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/global.h | |
parent | 6f59a175ec4173f3ee97ca4987547ff326e35328 (diff) |
get rid of 'using namespace NCurses' directive
Diffstat (limited to 'src/global.h')
-rw-r--r-- | src/global.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/global.h b/src/global.h index 6afa184d..37af2246 100644 --- a/src/global.h +++ b/src/global.h @@ -23,7 +23,6 @@ #include <sys/time.h> -#include "ncmpcpp.h" #include "mpdpp.h" #include "screen.h" @@ -45,10 +44,10 @@ namespace Global extern BasicScreen *myInactiveScreen; // header window (above main window) - extern Window *wHeader; + extern NC::Window *wHeader; // footer window (below main window) - extern Window *wFooter; + extern NC::Window *wFooter; // Y coordinate of top of main window extern size_t MainStartY; |