diff options
author | Max Kellermann <max@duempel.org> | 2013-10-29 18:54:34 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-29 21:13:40 +0100 |
commit | 2aee1b86f364dfc9d897939081eb4f0403f9a729 (patch) | |
tree | 1ba3e441ad69018153e266900777b2eb85b47b40 /src/DatabaseSelection.hxx | |
parent | b5fc21b9f442904608a73e3c705e498c55769843 (diff) | |
download | mpd-2aee1b86f364dfc9d897939081eb4f0403f9a729.tar.gz mpd-2aee1b86f364dfc9d897939081eb4f0403f9a729.tar.xz mpd-2aee1b86f364dfc9d897939081eb4f0403f9a729.zip |
SongFilter: add special keyword "base"
Restores the features from the previous draft commands "findin" /
"searchin".
Diffstat (limited to '')
-rw-r--r-- | src/DatabaseSelection.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/DatabaseSelection.hxx b/src/DatabaseSelection.hxx index 67a88b945..cdc0a8fef 100644 --- a/src/DatabaseSelection.hxx +++ b/src/DatabaseSelection.hxx @@ -42,9 +42,7 @@ struct DatabaseSelection { const SongFilter *filter; DatabaseSelection(const char *_uri, bool _recursive, - const SongFilter *_filter=nullptr) - :uri(_uri), recursive(_recursive), filter(_filter) { - } + const SongFilter *_filter=nullptr); gcc_pure bool Match(const Song &song) const; |