This commit is contained in:
doitux
2007-01-31 22:48:44 +00:00
parent 52288967ef
commit a36e212577
6 changed files with 37 additions and 34 deletions
+3 -3
View File
@@ -24,14 +24,14 @@
using namespace std;
GuiWrapper::GuiWrapper() : myLogWidget(0), myW(0)
GuiWrapper::GuiWrapper() : myLog(0), myW(0)
{
myW = new mainWindowImpl;
myW->show();
myLogWidget = new LogWidgetImpl(myW);
myLog = new Log(myW);
myConfig = new ConfigFile;
@@ -86,7 +86,7 @@ void GuiWrapper::nextRoundCleanGui() const { myW->nextRoundCleanGui(); }
void GuiWrapper::meInAction() const { myW->meInAction(); }
void GuiWrapper::showPlayerActionLogMsg(string playerName, int action, int setValue) const { myLogWidget->showPlayerActionLogMsg(playerName, action, setValue); }
void GuiWrapper::showPlayerActionLogMsg(string playerName, int action, int setValue) const { myLog->showPlayerActionLogMsg(playerName, action, setValue); }