playlist editor: change columns to be non-pointers

This commit is contained in:
Andrzej Rybczak
2012-09-14 18:38:28 +02:00
parent 8b42a41720
commit 49a21370a6
3 changed files with 172 additions and 173 deletions

View File

@@ -76,8 +76,8 @@ struct PlaylistEditor : public Screen<NC::Window *>, public Filterable, public H
bool isContentFiltered();
std::shared_ptr<ProxySongList> contentProxyList();
NC::Menu<std::string> *Playlists;
NC::Menu<MPD::Song> *Content;
NC::Menu<std::string> Playlists;
NC::Menu<MPD::Song> Content;
protected:
virtual bool isLockable() OVERRIDE { return true; }