TagType: rename enum tag_type to TagType

This commit is contained in:
Max Kellermann
2013-10-20 13:32:59 +02:00
parent cf4d80fc65
commit a78b2d84ed
41 changed files with 94 additions and 94 deletions

View File

@@ -34,10 +34,10 @@ const struct tag_table ape_tags[] = {
{ nullptr, TAG_NUM_OF_ITEM_TYPES }
};
static enum tag_type
static TagType
tag_ape_name_parse(const char *name)
{
enum tag_type type = tag_table_lookup_i(ape_tags, name);
TagType type = tag_table_lookup_i(ape_tags, name);
if (type == TAG_NUM_OF_ITEM_TYPES)
type = tag_name_parse_i(name);
@@ -58,7 +58,7 @@ tag_ape_import_item(unsigned long flags,
tag_handler_invoke_pair(handler, handler_ctx, key, value);
enum tag_type type = tag_ape_name_parse(key);
TagType type = tag_ape_name_parse(key);
if (type == TAG_NUM_OF_ITEM_TYPES)
return false;