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

@@ -30,7 +30,7 @@
#include "window.h"
#include "screen.h"
class Clock : public Screen<Window>
class Clock : public Screen<NC::Window>
{
public:
virtual void Resize();
@@ -39,7 +39,7 @@ class Clock : public Screen<Window>
virtual std::basic_string<my_char_t> Title();
virtual void Update();
virtual void Scroll(Where) { }
virtual void Scroll(NC::Where) { }
virtual void EnterPressed() { }
virtual void SpacePressed() { }
@@ -48,7 +48,7 @@ class Clock : public Screen<Window>
virtual bool allowsSelection() { return false; }
virtual List *GetList() { return 0; }
virtual NC::List *GetList() { return 0; }
virtual bool isMergable() { return true; }
@@ -57,7 +57,7 @@ class Clock : public Screen<Window>
virtual bool isLockable() { return false; }
private:
Window *itsPane;
NC::Window *itsPane;
static void Prepare();
static void Set(int, int);