media library: make screens non-pointer

This commit is contained in:
Andrzej Rybczak
2012-09-14 17:33:53 +02:00
parent 3a1175343f
commit 0d27d6ded3
5 changed files with 294 additions and 287 deletions

View File

@@ -86,9 +86,9 @@ struct MediaLibrary : public Screen<NC::Window *>, public Filterable, public Has
std::string Date;
};
NC::Menu<std::string> *Tags;
NC::Menu<SearchConstraints> *Albums;
NC::Menu<MPD::Song> *Songs;
NC::Menu<std::string> Tags;
NC::Menu<SearchConstraints> Albums;
NC::Menu<MPD::Song> Songs;
protected:
virtual bool isLockable() OVERRIDE { return true; }