diff options
Diffstat (limited to 'src/SongFilter.hxx')
-rw-r--r-- | src/SongFilter.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/SongFilter.hxx b/src/SongFilter.hxx index 2b53d4524..88378d710 100644 --- a/src/SongFilter.hxx +++ b/src/SongFilter.hxx @@ -29,8 +29,8 @@ #define LOCATE_TAG_FILE_TYPE TAG_NUM_OF_ITEM_TYPES+10 #define LOCATE_TAG_ANY_TYPE TAG_NUM_OF_ITEM_TYPES+20 -struct tag; -struct tag_item; +struct Tag; +struct TagItem; struct Song; class SongFilter { @@ -65,10 +65,10 @@ class SongFilter { bool StringMatch(const char *s) const; gcc_pure - bool Match(const tag_item &tag_item) const; + bool Match(const TagItem &tag_item) const; gcc_pure - bool Match(const struct tag &tag) const; + bool Match(const Tag &tag) const; gcc_pure bool Match(const Song &song) const; @@ -91,7 +91,7 @@ public: bool Parse(unsigned argc, char *argv[], bool fold_case=false); gcc_pure - bool Match(const tag &tag) const; + bool Match(const Tag &tag) const; gcc_pure bool Match(const Song &song) const; |