path to UTF8
configfile split
This commit is contained in:
@@ -24,16 +24,13 @@
|
||||
using namespace std;
|
||||
|
||||
|
||||
GuiWrapper::GuiWrapper() : myLog(0), myW(0)
|
||||
GuiWrapper::GuiWrapper(Session *session) : myLog(0), myW(0)
|
||||
{
|
||||
|
||||
|
||||
myW = new mainWindowImpl;
|
||||
myW = new mainWindowImpl(session);
|
||||
myW->show();
|
||||
|
||||
myLog = new Log(myW);
|
||||
myConfig = new ConfigFile;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -88,9 +85,6 @@ void GuiWrapper::meInAction() const { myW->meInAction(); }
|
||||
void GuiWrapper::logPlayerActionMsg(string playerName, int action, int setValue) { myLog->logPlayerActionMsg(playerName, action, setValue); }
|
||||
void GuiWrapper::logNewGameHandMsg(int gameID, int handID) { myLog->logNewGameHandMsg(gameID, handID); }
|
||||
|
||||
std::string GuiWrapper::stringToUtf8(const std::string &myString) { return myQtHelper->stringToUtf8(myString); }
|
||||
|
||||
|
||||
void GuiWrapper::SignalNetClientConnect(int actionID) { myW->SignalNetClientConnect(actionID); }
|
||||
void GuiWrapper::SignalNetClientGameInfo(int actionID) { myW->SignalNetClientGameInfo(actionID); }
|
||||
void GuiWrapper::SignalNetClientError(int errorID, int osErrorID) { myW->SignalNetClientError(errorID, osErrorID); }
|
||||
|
||||
Reference in New Issue
Block a user