summaryrefslogtreecommitdiffstats
path: root/kbackgammon/engines/generic
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
commit576eb4299a00bc053db35414406f46372a0f70f2 (patch)
tree4c030922d533821db464af566188e7d40cc8848c /kbackgammon/engines/generic
parent0718336b6017d1a4fc1d626544180a5a2a29ddec (diff)
downloadtdegames-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 'kbackgammon/engines/generic')
-rw-r--r--kbackgammon/engines/generic/kbgengine.cpp12
-rw-r--r--kbackgammon/engines/generic/kbgengine.h16
2 files changed, 14 insertions, 14 deletions
diff --git a/kbackgammon/engines/generic/kbgengine.cpp b/kbackgammon/engines/generic/kbgengine.cpp
index bbe528a6..59c19e2f 100644
--- a/kbackgammon/engines/generic/kbgengine.cpp
+++ b/kbackgammon/engines/generic/kbgengine.cpp
@@ -21,8 +21,8 @@
*/
-#include <qtimer.h>
-#include <qpopupmenu.h>
+#include <tqtimer.h>
+#include <tqpopupmenu.h>
#include <kdialogbase.h>
@@ -33,13 +33,13 @@
/*
* Constructor initializes the QObject
*/
-KBgEngine::KBgEngine(QWidget *parent, QString *name, QPopupMenu *pmenu)
- : QObject(parent, name->local8Bit())
+KBgEngine::KBgEngine(TQWidget *parent, TQString *name, TQPopupMenu *pmenu)
+ : TQObject(parent, name->local8Bit())
{
menu = pmenu;
cl = -1;
- ct = new QTimer(this);
- connect(ct, SIGNAL(timeout()), this, SLOT(done()));
+ ct = new TQTimer(this);
+ connect(ct, TQT_SIGNAL(timeout()), this, TQT_SLOT(done()));
}
/*
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;
};