summaryrefslogtreecommitdiff
path: root/src/display.h
diff options
context:
space:
mode:
authorAndrzej Rybczak <electricityispower@gmail.com>2015-05-10 12:14:56 +0200
committerAndrzej Rybczak <electricityispower@gmail.com>2015-05-11 22:35:06 +0200
commita8e2ec5ed0814ed601f36cf00014c12076647ff5 (patch)
tree4f243c03e1a2185e09ed58fa2b66ef547da7969c /src/display.h
parenta7dab01eff8f389052eb7e71a4871954bccd7d49 (diff)
replace ProxySongList with NC::List and SongList
Diffstat (limited to 'src/display.h')
-rw-r--r--src/display.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/display.h b/src/display.h
index e209b0d1..d4f4070a 100644
--- a/src/display.h
+++ b/src/display.h
@@ -26,20 +26,21 @@
#include "menu.h"
#include "mutable_song.h"
#include "search_engine.h"
+#include "song_list.h"
namespace Display {
std::string Columns(size_t);
-void SongsInColumns(NC::Menu<MPD::Song> &menu, const ProxySongList &pl);
+void SongsInColumns(NC::Menu<MPD::Song> &menu, const SongList &list);
-void Songs(NC::Menu<MPD::Song> &menu, const ProxySongList &pl, const Format::AST<char> &ast);
+void Songs(NC::Menu<MPD::Song> &menu, const SongList &list, const Format::AST<char> &ast);
void Tags(NC::Menu<MPD::MutableSong> &menu);
-void SEItems(NC::Menu<SEItem> &menu, const ProxySongList &pl);
+void SEItems(NC::Menu<SEItem> &menu, const SongList &list);
-void Items(NC::Menu<MPD::Item> &menu, const ProxySongList &pl);
+void Items(NC::Menu<MPD::Item> &menu, const SongList &list);
}