get rid of using directives

these in ncmpcpp.cpp stay since a lot of memebers are used.
This commit is contained in:
Andrzej Rybczak
2010-01-22 19:17:35 +01:00
parent e9cd9c89ec
commit a27332a825
18 changed files with 257 additions and 233 deletions

View File

@@ -25,7 +25,9 @@
#include "display.h"
#include "global.h"
using namespace Global;
using Global::MainHeight;
using Global::MainStartY;
using Global::myScreen;
Outputs *myOutputs = new Outputs;
@@ -52,11 +54,11 @@ void Outputs::SwitchTo()
Resize();
if (myScreen != this && myScreen->isTabbable())
myPrevScreen = myScreen;
Global::myPrevScreen = myScreen;
myScreen = this;
w->Window::Clear();
RedrawHeader = 1;
Global::RedrawHeader = 1;
}
void Outputs::Resize()