summaryrefslogtreecommitdiff
path: root/src/display.h
diff options
context:
space:
mode:
authorAndrzej Rybczak <electricityispower@gmail.com>2012-09-02 13:47:57 +0200
committerAndrzej Rybczak <electricityispower@gmail.com>2012-09-02 13:52:26 +0200
commit6f59a175ec4173f3ee97ca4987547ff326e35328 (patch)
treee0731faadbe15ac20df7521123617db6ee461151 /src/display.h
parentad8fef343f0ff0905366f8c164aa40668890af33 (diff)
implement HasSongs interface
Diffstat (limited to 'src/display.h')
-rw-r--r--src/display.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/display.h b/src/display.h
index efd0c41c..83b2976b 100644
--- a/src/display.h
+++ b/src/display.h
@@ -21,11 +21,11 @@
#ifndef _DISPLAY_H
#define _DISPLAY_H
+#include "interfaces.h"
#include "ncmpcpp.h"
#include "menu.h"
#include "mpdpp.h"
#include "mutable_song.h"
-#include "screen.h"
#include "search_engine.h"
namespace Display
@@ -42,9 +42,9 @@ namespace Display
menu << menu.Drawn().value().first;
}
- void SongsInColumns(Menu<MPD::Song> &menu, BasicScreen &screen);
+ void SongsInColumns(Menu<MPD::Song> &menu, HasSongs &screen);
- void Songs(Menu<MPD::Song> &menu, BasicScreen &screen, const std::string &format);
+ void Songs(Menu<MPD::Song> &menu, HasSongs &screen, const std::string &format);
void Tags(Menu<MPD::MutableSong> &menu);