diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-15 22:27:50 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-15 22:58:32 +0200 |
commit | 14587cb4ec92f078b8f20cf717e7a4e92ae75c5c (patch) | |
tree | cd581d428066d2761c3ee5dde0bcf32ba433b43a /src/sort_playlist.h | |
parent | f7dba0a578d32677eebdeec76fa5c3204a933d20 (diff) |
abstract shared parts of switchTo methods away
Diffstat (limited to 'src/sort_playlist.h')
-rw-r--r-- | src/sort_playlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sort_playlist.h b/src/sort_playlist.h index 577f85e3..005a4b1d 100644 --- a/src/sort_playlist.h +++ b/src/sort_playlist.h @@ -21,10 +21,11 @@ #ifndef _SORT_PLAYLIST #define _SORT_PLAYLIST +#include "interfaces.h" #include "screen.h" #include "song.h" -struct SortPlaylistDialog : public Screen<NC::Menu<std::pair<std::string, MPD::Song::GetFunction>>> +struct SortPlaylistDialog: Screen<NC::Menu<std::pair<std::string, MPD::Song::GetFunction>>>, Tabbable { SortPlaylistDialog(); @@ -39,7 +40,6 @@ struct SortPlaylistDialog : public Screen<NC::Menu<std::pair<std::string, MPD::S virtual void spacePressed() OVERRIDE { } virtual void mouseButtonPressed(MEVENT me) OVERRIDE; - virtual bool isTabbable() OVERRIDE { return false; } virtual bool isMergable() OVERRIDE { return false; } // private members |