bugfix guilog, adding new log in local_engine
This commit is contained in:
+4
-2
@@ -199,7 +199,8 @@ HEADERS += src/game.h \
|
|||||||
src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.h \
|
src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.h \
|
||||||
src/engine/local_engine/replay.h \
|
src/engine/local_engine/replay.h \
|
||||||
src/gui/qt/gamelobbydialog/mynicklistsortfilterproxymodel.h \
|
src/gui/qt/gamelobbydialog/mynicklistsortfilterproxymodel.h \
|
||||||
src/gui/qt/gametable/myslider.h
|
src/gui/qt/gametable/myslider.h \
|
||||||
|
src/engine/local_engine/log.h
|
||||||
FORMS += src/gui/qt/gametable.ui \
|
FORMS += src/gui/qt/gametable.ui \
|
||||||
src/gui/qt/aboutpokerth.ui \
|
src/gui/qt/aboutpokerth.ui \
|
||||||
src/gui/qt/connecttoserverdialog.ui \
|
src/gui/qt/connecttoserverdialog.ui \
|
||||||
@@ -267,7 +268,8 @@ SOURCES += src/pokerth.cpp \
|
|||||||
src/gui/qt/gamelobbydialog/mygamelistsortfilterproxymodel.cpp \
|
src/gui/qt/gamelobbydialog/mygamelistsortfilterproxymodel.cpp \
|
||||||
src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.cpp \
|
src/gui/qt/internetgamelogindialog/internetgamelogindialogimpl.cpp \
|
||||||
src/engine/local_engine/replay.cpp \
|
src/engine/local_engine/replay.cpp \
|
||||||
src/gui/qt/gamelobbydialog/mynicklistsortfilterproxymodel.cpp
|
src/gui/qt/gamelobbydialog/mynicklistsortfilterproxymodel.cpp \
|
||||||
|
src/engine/local_engine/log.cpp
|
||||||
TRANSLATIONS = ts/pokerth_af.ts \
|
TRANSLATIONS = ts/pokerth_af.ts \
|
||||||
ts/pokerth_bg.ts \
|
ts/pokerth_bg.ts \
|
||||||
ts/pokerth_zhcn.ts \
|
ts/pokerth_zhcn.ts \
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2006 by FThauer FHammer *
|
||||||
|
* f.thauer@web.de *
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
* (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
* This program is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License *
|
||||||
|
* along with this program; if not, write to the *
|
||||||
|
* Free Software Foundation, Inc., *
|
||||||
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
|
Log::Log()
|
||||||
|
{
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
/***************************************************************************
|
||||||
|
* Copyright (C) 2006 by FThauer FHammer *
|
||||||
|
* f.thauer@web.de *
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or modify *
|
||||||
|
* it under the terms of the GNU General Public License as published by *
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or *
|
||||||
|
* (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
* This program is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License *
|
||||||
|
* along with this program; if not, write to the *
|
||||||
|
* Free Software Foundation, Inc., *
|
||||||
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
||||||
|
***************************************************************************/
|
||||||
|
#ifndef LOG_H
|
||||||
|
#define LOG_H
|
||||||
|
|
||||||
|
class Log
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
Log();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // LOG_H
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
class Session;
|
class Session;
|
||||||
class gameTableImpl;
|
class gameTableImpl;
|
||||||
class startWindowImpl;
|
class startWindowImpl;
|
||||||
class Log;
|
class guiLog;
|
||||||
class ConfigFile;
|
class ConfigFile;
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user