diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:06:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-07-20 15:06:19 +0900 |
commit | bc6061ff9e83d8032611908039c3b399aedabf88 (patch) | |
tree | 6a433a040d0194af8a686f67d819297ea19c0b3d /kspaceduel | |
parent | 8d5c10dd092d5429179276a52225d419a25a9197 (diff) | |
download | tdegames-bc6061ff9e83d8032611908039c3b399aedabf88.tar.gz tdegames-bc6061ff9e83d8032611908039c3b399aedabf88.zip |
Replace Q_OBJECT with TQ_OBJECT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kspaceduel')
-rw-r--r-- | kspaceduel/dialogs.h | 4 | ||||
-rw-r--r-- | kspaceduel/mainview.h | 2 | ||||
-rw-r--r-- | kspaceduel/playerinfo.h | 2 | ||||
-rw-r--r-- | kspaceduel/topwidget.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/kspaceduel/dialogs.h b/kspaceduel/dialogs.h index 4b1fc884..19bb353a 100644 --- a/kspaceduel/dialogs.h +++ b/kspaceduel/dialogs.h @@ -17,7 +17,7 @@ class TQCheckBox; class ConfigSetup:public TQWidget { - Q_OBJECT + TQ_OBJECT public: ConfigSetup(SConfig *custom,TQWidget *parent=0,const char* name=0); @@ -79,7 +79,7 @@ private: class SettingsDialog : public TDEConfigDialog { - Q_OBJECT + TQ_OBJECT public: SettingsDialog(SConfig *customConfig, TQWidget *parent=0, const char *name=0); diff --git a/kspaceduel/mainview.h b/kspaceduel/mainview.h index f39e3134..0515dfc7 100644 --- a/kspaceduel/mainview.h +++ b/kspaceduel/mainview.h @@ -18,7 +18,7 @@ class Ai; class MyMainView:public TQWidget { - Q_OBJECT + TQ_OBJECT public: MyMainView(TQWidget *parent=0); diff --git a/kspaceduel/playerinfo.h b/kspaceduel/playerinfo.h index 780a974f..5668889e 100644 --- a/kspaceduel/playerinfo.h +++ b/kspaceduel/playerinfo.h @@ -9,7 +9,7 @@ class TQPixmap; class PlayerInfo:public TQFrame { - Q_OBJECT + TQ_OBJECT public: PlayerInfo(int pnr,TQWidget *parent=0,const char *name=0); diff --git a/kspaceduel/topwidget.h b/kspaceduel/topwidget.h index 6b3c475f..0042a8de 100644 --- a/kspaceduel/topwidget.h +++ b/kspaceduel/topwidget.h @@ -8,7 +8,7 @@ class MyMainView; class MyTopLevelWidget:public TDEMainWindow { - Q_OBJECT + TQ_OBJECT public: MyTopLevelWidget(); |