summaryrefslogtreecommitdiffstats
path: root/atlantik/client/configdlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:58:26 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-11 04:58:26 +0000
commit838baf3f99ec5ab81b063eb5449a3381d860f377 (patch)
treedd31abcfde08ca92e4623b8f50b3d762a87c997a /atlantik/client/configdlg.h
parent2bf598bafa22fac4126fc8842df6b0119aadc0e9 (diff)
downloadtdegames-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 'atlantik/client/configdlg.h')
-rw-r--r--atlantik/client/configdlg.h23
1 files changed, 14 insertions, 9 deletions
diff --git a/atlantik/client/configdlg.h b/atlantik/client/configdlg.h
index 41843ca6..c28e3a98 100644
--- a/atlantik/client/configdlg.h
+++ b/atlantik/client/configdlg.h
@@ -32,12 +32,13 @@ class ConfigDialog;
struct AtlantikConfig;
-class ConfigPlayer : public QWidget
+class ConfigPlayer : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- ConfigPlayer(ConfigDialog *configDialog, TQWidget *parent, const char *name=0);
+ ConfigPlayer(ConfigDialog *configDialog, TQWidget *tqparent, const char *name=0);
TQString playerName();
TQString playerImage();
@@ -55,12 +56,13 @@ private:
KPushButton *m_playerIcon;
};
-class ConfigBoard : public QWidget
+class ConfigBoard : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- ConfigBoard(ConfigDialog *configDialog, TQWidget *parent, const char *name=0);
+ ConfigBoard(ConfigDialog *configDialog, TQWidget *tqparent, const char *name=0);
bool indicateUnowned();
bool highliteUnowned();
@@ -75,12 +77,13 @@ private:
TQCheckBox *m_indicateUnowned, *m_highliteUnowned, *m_darkenMortgaged, *m_animateToken, *m_quartzEffects;
};
-class ConfigMonopigator : public QWidget
+class ConfigMonopigator : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- ConfigMonopigator(ConfigDialog *dialog, TQWidget *parent, const char *name = 0);
+ ConfigMonopigator(ConfigDialog *dialog, TQWidget *tqparent, const char *name = 0);
bool connectOnStart();
bool hideDevelopmentServers();
@@ -92,12 +95,13 @@ private:
TQCheckBox *m_connectOnStart, *m_hideDevelopmentServers;
};
-class ConfigGeneral : public QWidget
+class ConfigGeneral : public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- ConfigGeneral(ConfigDialog *dialog, TQWidget *parent, const char *name = 0);
+ ConfigGeneral(ConfigDialog *dialog, TQWidget *tqparent, const char *name = 0);
bool chatTimestamps();
@@ -111,9 +115,10 @@ private:
class ConfigDialog : public KDialogBase
{
Q_OBJECT
+ TQ_OBJECT
public:
- ConfigDialog(Atlantik *parent, const char *name=0);
+ ConfigDialog(Atlantik *tqparent, const char *name=0);
bool chatTimestamps();
bool indicateUnowned();