diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 04:58:26 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 04:58:26 +0000 |
commit | 838baf3f99ec5ab81b063eb5449a3381d860f377 (patch) | |
tree | dd31abcfde08ca92e4623b8f50b3d762a87c997a /libkdegames/kgame/dialogs/kgamedebugdialog.h | |
parent | 2bf598bafa22fac4126fc8842df6b0119aadc0e9 (diff) | |
download | tdegames-838baf3f99ec5ab81b063eb5449a3381d860f377.tar.gz tdegames-838baf3f99ec5ab81b063eb5449a3381d860f377.zip |
TQt4 port kdegames
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1236074 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkdegames/kgame/dialogs/kgamedebugdialog.h')
-rw-r--r-- | libkdegames/kgame/dialogs/kgamedebugdialog.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libkdegames/kgame/dialogs/kgamedebugdialog.h b/libkdegames/kgame/dialogs/kgamedebugdialog.h index 57f20c34..924037ff 100644 --- a/libkdegames/kgame/dialogs/kgamedebugdialog.h +++ b/libkdegames/kgame/dialogs/kgamedebugdialog.h @@ -34,8 +34,9 @@ class KGameDebugDialogPrivate; class KDE_EXPORT KGameDebugDialog : public KDialogBase { Q_OBJECT + TQ_OBJECT public: - KGameDebugDialog(KGame* g, TQWidget* parent, bool modal = false); + KGameDebugDialog(KGame* g, TQWidget* tqparent, bool modal = false); ~KGameDebugDialog(); /** @@ -77,7 +78,7 @@ public slots: signals: /** - * This signal is emitted when the "debug messages" page couldn't find + * This signal is emitted when the "debug messages" page couldn't tqfind * the name of a message id. This is usually the case for user-defined * messages. KGameDebugDialog asks you to give the msgid a name. * @param messageid The ID of the message. As given to @ref @@ -134,7 +135,7 @@ protected slots: /** * A message has been received - see @ref KGame::signalMessageUpdate **/ - void slotMessageUpdate(int msgid, Q_UINT32 receiver, Q_UINT32 sender); + void slotMessageUpdate(int msgid, TQ_UINT32 receiver, TQ_UINT32 sender); private: void initGamePage(); |