This commit is contained in:
doitux
2007-01-31 21:43:33 +00:00
parent 14c1b2064c
commit 973dd79ac8
8 changed files with 31 additions and 33 deletions
+3 -3
View File
@@ -24,14 +24,14 @@
using namespace std;
GuiWrapper::GuiWrapper() : myLog(0), myW(0)
GuiWrapper::GuiWrapper() : myLogWidget(0), myW(0)
{
myW = new mainWindowImpl;
myW->show();
myLog = new Log(myW);
myLogWidget = new LogWidgetImpl(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 { myLog->showPlayerActionLogMsg(playerName, action, setValue); }
void GuiWrapper::showPlayerActionLogMsg(string playerName, int action, int setValue) const { myLogWidget->showPlayerActionLogMsg(playerName, action, setValue); }