summaryrefslogtreecommitdiffstats
path: root/kbackgammon/engines/generic/kbgengine.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbackgammon/engines/generic/kbgengine.h')
-rw-r--r--kbackgammon/engines/generic/kbgengine.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kbackgammon/engines/generic/kbgengine.h b/kbackgammon/engines/generic/kbgengine.h
index ee672f40..2dd3a9a9 100644
--- a/kbackgammon/engines/generic/kbgengine.h
+++ b/kbackgammon/engines/generic/kbgengine.h
@@ -28,7 +28,7 @@
#include <config.h>
#endif
-#include <qobject.h>
+#include <tqobject.h>
class QTimer;
class QPopupMenu;
@@ -67,7 +67,7 @@ class KBgEngine:public QObject
/**
* Constructor
*/
- KBgEngine (QWidget * parent = 0, QString * name = 0, QPopupMenu * pmenu = 0);
+ KBgEngine (TQWidget * parent = 0, TQString * name = 0, TQPopupMenu * pmenu = 0);
/**
* Destructor
@@ -179,7 +179,7 @@ public slots:
* A move has been made on the board - see the board class
* for the format of the string s
*/
- virtual void handleMove (QString * s) = 0;
+ virtual void handleMove (TQString * s) = 0;
/**
* Undo the last move
@@ -214,7 +214,7 @@ public slots:
/**
* Process the string cmd
*/
- virtual void handleCommand (const QString & cmd) = 0;
+ virtual void handleCommand (const TQString & cmd) = 0;
/**
* Start a new game
@@ -237,12 +237,12 @@ signals:
* The text identifies the current game status - could be put
* into the main window caption
*/
- void statText (const QString & msg);
+ void statText (const TQString & msg);
/**
* Text that should be displayed in the ongoing message window
*/
- void infoText (const QString & msg);
+ void infoText (const TQString & msg);
/**
* Emit the most recent game state
@@ -285,12 +285,12 @@ protected:
/**
* Context menu for the board
*/
- QPopupMenu * menu;
+ TQPopupMenu * menu;
/**
* Commit timer
*/
- QTimer *ct;
+ TQTimer *ct;
int cl;
};