diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-02 15:37:42 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-02 15:37:42 +0200 |
commit | d47cad1d50cc9d0222a752d63748321485bd7c33 (patch) | |
tree | e390bfc434412c163df1cec6c9cdc1ace29e92fc /src/browser.h | |
parent | 6f59a175ec4173f3ee97ca4987547ff326e35328 (diff) |
get rid of 'using namespace NCurses' directive
Diffstat (limited to 'src/browser.h')
-rw-r--r-- | src/browser.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/browser.h b/src/browser.h index ac4fba86..69262187 100644 --- a/src/browser.h +++ b/src/browser.h @@ -22,11 +22,9 @@ #define _BROWSER_H #include "interfaces.h" -#include "ncmpcpp.h" -#include "regex_filter.h" #include "screen.h" -class Browser : public Screen< Menu<MPD::Item> >, public Filterable, public HasSongs, public Searchable +class Browser : public Screen< NC::Menu<MPD::Item> >, public Filterable, public HasSongs, public Searchable { public: Browser() : itsBrowseLocally(0), itsScrollBeginning(0), itsBrowsedDir("/") { } @@ -59,7 +57,7 @@ class Browser : public Screen< Menu<MPD::Item> >, public Filterable, public HasS virtual void removeSelection(); virtual MPD::SongList getSelectedSongs(); - virtual List *GetList() { return w; } + virtual NC::List *GetList() { return w; } virtual bool isMergable() { return true; } |