This commit is contained in:
doitux
2007-02-06 00:48:55 +00:00
parent 59009e6786
commit 76d3b9a3f4
+1 -3
View File
@@ -32,9 +32,7 @@ Log::Log(mainWindowImpl* w) : myW(w)
myLogDir = new QDir(QString::fromStdString(myConfig->readConfigString("LogDir")));
#ifdef _WIN32
// QString temp = myLogDir->absolutePath()+"\\pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html";
// cout << temp.toStdString() << endl;
myLogFile = new QFile(myLogDir->absolutePath()+"pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html");
myLogFile = new QFile(myLogDir->absolutePath()+"\pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html");
#else
myLogFile = new QFile(myLogDir->absolutePath()+"/pokerth-log-"+QDateTime::currentDateTime().toString("yyyy-MM-dd_hh:mm:ss")+".html");
#endif