From ba161ec572b98d3bcf9f735ff122133319fe896a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 28 Jul 2013 13:25:12 +0200 Subject: song: convert header to C++ --- src/SongFilter.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/SongFilter.cxx') diff --git a/src/SongFilter.cxx b/src/SongFilter.cxx index 0e138386b..ce9cea246 100644 --- a/src/SongFilter.cxx +++ b/src/SongFilter.cxx @@ -19,7 +19,7 @@ #include "config.h" #include "SongFilter.hxx" -#include "song.h" +#include "Song.hxx" #include "tag.h" #include @@ -107,10 +107,10 @@ SongFilter::Item::Match(const struct tag &_tag) const } bool -SongFilter::Item::Match(const song &song) const +SongFilter::Item::Match(const Song &song) const { if (tag == LOCATE_TAG_FILE_TYPE || tag == LOCATE_TAG_ANY_TYPE) { - char *uri = song_get_uri(&song); + char *uri = song.GetURI(); const bool result = StringMatch(uri); g_free(uri); @@ -156,7 +156,7 @@ SongFilter::Parse(unsigned argc, char *argv[], bool fold_case) } bool -SongFilter::Match(const song &song) const +SongFilter::Match(const Song &song) const { for (const auto &i : items) if (!i.Match(song)) -- cgit v1.2.3