diff options
author | Timothy Pearson <[email protected]> | 2012-02-17 16:07:10 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-02-17 16:07:10 -0600 |
commit | 5106f93512659db1a236db49febc5ed1a45e3384 (patch) | |
tree | f7a4da53d81ff5844af9d043604940c253cdb529 /kolf/game.h | |
parent | a5c3a83e1a931b5af4387f05f7204a2007ae71a1 (diff) | |
download | tdegames-5106f93512659db1a236db49febc5ed1a45e3384.tar.gz tdegames-5106f93512659db1a236db49febc5ed1a45e3384.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kolf/game.h')
-rw-r--r-- | kolf/game.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kolf/game.h b/kolf/game.h index 136ac1d7..da5c0beb 100644 --- a/kolf/game.h +++ b/kolf/game.h @@ -195,7 +195,7 @@ private: class EllipseConfig : public Config { Q_OBJECT - TQ_OBJECT + public: EllipseConfig(Ellipse *ellipse, TQWidget *); @@ -318,7 +318,7 @@ class BlackHole; class BlackHoleConfig : public Config { Q_OBJECT - TQ_OBJECT + public: BlackHoleConfig(BlackHole *blackHole, TQWidget *parent); @@ -355,7 +355,7 @@ protected: class BlackHoleTimer : public TQObject { Q_OBJECT - TQ_OBJECT + public: BlackHoleTimer(Ball *ball, double speed, int msec); @@ -375,7 +375,7 @@ protected: class BlackHole : public TQObject, public Hole { Q_OBJECT - TQ_OBJECT + public: BlackHole(TQCanvas *canvas); @@ -545,7 +545,7 @@ class Bridge; class BridgeConfig : public Config { Q_OBJECT - TQ_OBJECT + public: BridgeConfig(Bridge *bridge, TQWidget *); @@ -618,7 +618,7 @@ class Sign; class SignConfig : public BridgeConfig { Q_OBJECT - TQ_OBJECT + public: SignConfig(Sign *sign, TQWidget *parent); @@ -667,7 +667,7 @@ protected: class WindmillConfig : public BridgeConfig { Q_OBJECT - TQ_OBJECT + public: WindmillConfig(Windmill *windmill, TQWidget *parent); @@ -715,7 +715,7 @@ class HoleInfo; class HoleConfig : public Config { Q_OBJECT - TQ_OBJECT + public: HoleConfig(HoleInfo *holeInfo, TQWidget *); @@ -801,7 +801,7 @@ struct KDE_EXPORT CourseInfo class KDE_EXPORT KolfGame : public TQCanvasView { Q_OBJECT - TQ_OBJECT + public: KolfGame(ObjectList *obj, PlayerList *players, TQString filename, TQWidget *parent=0, const char *name=0 ); |