summaryrefslogtreecommitdiffstats
path: root/sigmodr
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-03-20 22:48:03 -0400
committerBen Boeckel <MathStuf@gmail.com>2009-03-20 22:48:03 -0400
commit910f6c6cce35b48b1b5049c4ba26bd51d4259279 (patch)
tree49626485595746bb8f222f63f6d842e876778f9d /sigmodr
parent8a680b85b4dc0a42cd90cb16bd0b28fba5d64fb9 (diff)
downloadsigen-910f6c6cce35b48b1b5049c4ba26bd51d4259279.tar.gz
sigen-910f6c6cce35b48b1b5049c4ba26bd51d4259279.tar.xz
sigen-910f6c6cce35b48b1b5049c4ba26bd51d4259279.zip
Add namespaces to the main file for Sigmodr
Diffstat (limited to 'sigmodr')
-rw-r--r--sigmodr/Sigmodr.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/sigmodr/Sigmodr.cpp b/sigmodr/Sigmodr.cpp
index 37e058ae..5e599e92 100644
--- a/sigmodr/Sigmodr.cpp
+++ b/sigmodr/Sigmodr.cpp
@@ -26,6 +26,9 @@
// Standard includes
#include <cstdio>
+using namespace std;
+using namespace Sigmodr;
+
static void messageHandler(QtMsgType type, const char* message)
{
switch (type)
@@ -73,7 +76,7 @@ int main(int argc, char* argv[])
KApplication* app = new KApplication;
- Sigmodr::SigmodrUI* mainWindow = new Sigmodr::SigmodrUI;
+ SigmodrUI* mainWindow = new SigmodrUI;
mainWindow->show();
app->exec();
return 0;