diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:42:31 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:42:31 +0000 |
commit | 576eb4299a00bc053db35414406f46372a0f70f2 (patch) | |
tree | 4c030922d533821db464af566188e7d40cc8848c /libksirtet/lib/mp_board.h | |
parent | 0718336b6017d1a4fc1d626544180a5a2a29ddec (diff) | |
download | tdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libksirtet/lib/mp_board.h')
-rw-r--r-- | libksirtet/lib/mp_board.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libksirtet/lib/mp_board.h b/libksirtet/lib/mp_board.h index fbd1e01f..5e84825c 100644 --- a/libksirtet/lib/mp_board.h +++ b/libksirtet/lib/mp_board.h @@ -1,7 +1,7 @@ #ifndef MP_BOARD_H #define MP_BOARD_H -#include <qwidget.h> +#include <tqwidget.h> /** * The MP_Board class is the base widget from which each individual @@ -12,8 +12,8 @@ class MPBoard : public QWidget Q_OBJECT public: - MPBoard(QWidget *parent, const char *name=0) - : QWidget(parent, name) {} + MPBoard(TQWidget *parent, const char *name=0) + : TQWidget(parent, name) {} virtual ~MPBoard() {} /** @@ -23,7 +23,7 @@ class MPBoard : public QWidget * @param first is TRUE if this board is the first local one. */ virtual void init(bool AI, bool multiplayers, bool server, bool first, - const QString &name) = 0; + const TQString &name) = 0; /** * Put data on the stream. @@ -31,7 +31,7 @@ class MPBoard : public QWidget * This method is the communication way out. The data given here will * be the only information that will go to the server. */ - virtual void dataOut(QDataStream &) = 0; + virtual void dataOut(TQDataStream &) = 0; /** * Get data from the stream. @@ -39,7 +39,7 @@ class MPBoard : public QWidget * This method is the communication way in. The data given here will be * the only information that you will receive from the server. */ - virtual void dataIn(QDataStream &) = 0; + virtual void dataIn(TQDataStream &) = 0; signals: /** |