diff options
author | Max Kellermann <max@duempel.org> | 2013-07-30 20:11:57 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-07-30 20:19:53 +0200 |
commit | 06f898cc1240a29b293de0e97ad95a4fdc971254 (patch) | |
tree | 001a6d3db039cdc03323f3bfddc13b94bde31ce4 /src/DatabaseHelpers.cxx | |
parent | 6a9ab8bc0e2f5d34803513bb2d94d041a607a58c (diff) | |
download | mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.gz mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.tar.xz mpd-06f898cc1240a29b293de0e97ad95a4fdc971254.zip |
tag: convert to C++
Diffstat (limited to '')
-rw-r--r-- | src/DatabaseHelpers.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DatabaseHelpers.cxx b/src/DatabaseHelpers.cxx index d6eeb10a1..ecaf44915 100644 --- a/src/DatabaseHelpers.cxx +++ b/src/DatabaseHelpers.cxx @@ -20,7 +20,7 @@ #include "DatabaseHelpers.hxx" #include "DatabasePlugin.hxx" #include "Song.hxx" -#include "tag.h" +#include "Tag.hxx" #include <functional> #include <set> @@ -39,7 +39,7 @@ typedef std::set<const char *, StringLess> StringSet; static bool CollectTags(StringSet &set, enum tag_type tag_type, Song &song) { - struct tag *tag = song.tag; + Tag *tag = song.tag; if (tag == nullptr) return true; @@ -79,13 +79,13 @@ VisitUniqueTags(const Database &db, const DatabaseSelection &selection, static void StatsVisitTag(DatabaseStats &stats, StringSet &artists, StringSet &albums, - const struct tag &tag) + const Tag &tag) { if (tag.time > 0) stats.total_duration += tag.time; for (unsigned i = 0; i < tag.num_items; ++i) { - const struct tag_item &item = *tag.items[i]; + const TagItem &item = *tag.items[i]; switch (item.type) { case TAG_ARTIST: |