get rid of 'using namespace NCurses' directive

This commit is contained in:
Andrzej Rybczak
2012-09-02 15:37:42 +02:00
parent 6f59a175ec
commit d47cad1d50
58 changed files with 607 additions and 613 deletions

View File

@@ -41,7 +41,7 @@ struct LastfmService
virtual Result fetch(Args &args);
virtual bool checkArgs(const Args &args) = 0;
virtual void colorizeOutput(NCurses::Scrollpad &w) = 0;
virtual void colorizeOutput(NC::Scrollpad &w) = 0;
protected:
virtual bool actionFailed(const std::string &data);
@@ -60,7 +60,7 @@ struct ArtistInfo : public LastfmService
virtual const char *name() { return "Artist info"; }
virtual bool checkArgs(const Args &args);
virtual void colorizeOutput(NCurses::Scrollpad &w);
virtual void colorizeOutput(NC::Scrollpad &w);
protected:
virtual bool parse(std::string &data);