display: pass screen to functions by pointer

This commit is contained in:
Andrzej Rybczak
2012-09-05 20:52:33 +02:00
parent eff1d672b9
commit 10e88ec6b4
6 changed files with 19 additions and 16 deletions

View File

@@ -40,9 +40,9 @@ namespace Display
menu << menu.drawn()->value().first;
}
void SongsInColumns(NC::Menu<MPD::Song> &menu, HasSongs &screen);
void SongsInColumns(NC::Menu<MPD::Song> &menu, HasSongs *screen);
void Songs(NC::Menu<MPD::Song> &menu, HasSongs &screen, const std::string &format);
void Songs(NC::Menu<MPD::Song> &menu, HasSongs *screen, const std::string &format);
void Tags(NC::Menu<MPD::MutableSong> &menu);