Merge branch 'v0.18.x'

This commit is contained in:
Max Kellermann
2014-06-23 10:13:50 +02:00
6 changed files with 68 additions and 1 deletions
+10
View File
@@ -214,6 +214,16 @@ SongFilter::Match(const LightSong &song) const
return true;
}
bool
SongFilter::HasOtherThanBase() const
{
for (const auto &i : items)
if (i.GetTag() != LOCATE_TAG_BASE_TYPE)
return true;
return false;
}
std::string
SongFilter::GetBase() const
{