summaryrefslogtreecommitdiffstats
path: root/libksirtet/lib/mp_board.h
diff options
context:
space:
mode:
Diffstat (limited to 'libksirtet/lib/mp_board.h')
-rw-r--r--libksirtet/lib/mp_board.h12
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:
/**