From a78b2d84ed7c2a82c69c56125036e70b009a87b0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 20 Oct 2013 13:32:59 +0200 Subject: TagType: rename enum tag_type to TagType --- src/cue/CueParser.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cue') diff --git a/src/cue/CueParser.cxx b/src/cue/CueParser.cxx index f52f8526f..60b33b6b4 100644 --- a/src/cue/CueParser.cxx +++ b/src/cue/CueParser.cxx @@ -109,7 +109,7 @@ cue_next_value(char **pp) } static void -cue_add_tag(Tag &tag, enum tag_type type, char *p) +cue_add_tag(Tag &tag, TagType type, char *p) { const char *value = cue_next_value(&p); if (value != nullptr) @@ -124,7 +124,7 @@ cue_parse_rem(char *p, Tag &tag) if (type == nullptr) return; - enum tag_type type2 = tag_name_parse_i(type); + TagType type2 = tag_name_parse_i(type); if (type2 != TAG_NUM_OF_ITEM_TYPES) cue_add_tag(tag, type2, p); } @@ -198,7 +198,7 @@ CueParser::Feed2(char *p) CD artist, while at track-level it specifies the track artist." */ - enum tag_type type = state == TRACK + TagType type = state == TRACK ? TAG_ARTIST : TAG_ALBUM_ARTIST; -- cgit v1.2.3