next startwindow steps

This commit is contained in:
doitux
2008-06-08 10:50:08 +00:00
parent 0c98902905
commit 0cf73d2bc9
7 changed files with 38 additions and 291 deletions
+5 -1
View File
@@ -23,18 +23,22 @@
#include "log.h"
#include "chat.h"
#include "gametableimpl.h"
#include "startwindowimpl.h"
#include "configfile.h"
using namespace std;
GuiWrapper::GuiWrapper(ConfigFile *c) : myLog(0), myW(0), myConfig(c)
GuiWrapper::GuiWrapper(ConfigFile *c) : myLog(NULL), myW(NULL), myConfig(c), myStartWindow(NULL)
{
myW = new gameTableImpl(myConfig);
myW->show();
myLog = new Log(myW, myConfig);
myStartWindow = new startWindowImpl(myW, myConfig);
// myStartWindow-> show();
}