diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:07:10 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-17 16:07:10 -0600 |
commit | 5106f93512659db1a236db49febc5ed1a45e3384 (patch) | |
tree | f7a4da53d81ff5844af9d043604940c253cdb529 /kspaceduel | |
parent | a5c3a83e1a931b5af4387f05f7204a2007ae71a1 (diff) | |
download | tdegames-5106f93512659db1a236db49febc5ed1a45e3384.tar.gz tdegames-5106f93512659db1a236db49febc5ed1a45e3384.zip |
Remove spurious TQ_OBJECT instances
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 897ef65f..33c77cb2 100644 --- a/kspaceduel/dialogs.h +++ b/kspaceduel/dialogs.h @@ -18,7 +18,7 @@ class TQCheckBox; class ConfigSetup:public TQWidget { Q_OBJECT - TQ_OBJECT + public: ConfigSetup(SConfig *custom,TQWidget *parent=0,const char* name=0); @@ -80,7 +80,7 @@ private: class SettingsDialog : public KConfigDialog { Q_OBJECT - TQ_OBJECT + public: SettingsDialog(SConfig *customConfig, TQWidget *parent=0, const char *name=0); ~SettingsDialog(); diff --git a/kspaceduel/mainview.h b/kspaceduel/mainview.h index d7ed1bdc..41622278 100644 --- a/kspaceduel/mainview.h +++ b/kspaceduel/mainview.h @@ -19,7 +19,7 @@ class Ai; class MyMainView:public TQWidget { Q_OBJECT - TQ_OBJECT + public: MyMainView(TQWidget *parent=0); ~MyMainView(); diff --git a/kspaceduel/playerinfo.h b/kspaceduel/playerinfo.h index a0f570db..780a974f 100644 --- a/kspaceduel/playerinfo.h +++ b/kspaceduel/playerinfo.h @@ -10,7 +10,7 @@ class TQPixmap; class PlayerInfo:public TQFrame { Q_OBJECT - TQ_OBJECT + public: PlayerInfo(int pnr,TQWidget *parent=0,const char *name=0); public slots: diff --git a/kspaceduel/topwidget.h b/kspaceduel/topwidget.h index 9563fe35..c3b66d03 100644 --- a/kspaceduel/topwidget.h +++ b/kspaceduel/topwidget.h @@ -9,7 +9,7 @@ class MyMainView; class MyTopLevelWidget:public KMainWindow { Q_OBJECT - TQ_OBJECT + public: MyTopLevelWidget(); void start(); |