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 /kolf/game.h | |
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 '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 fcbeec4e..e4d46506 100644 --- a/kolf/game.h +++ b/kolf/game.h @@ -194,7 +194,7 @@ private: }; class EllipseConfig : public Config { - Q_OBJECT + TQ_OBJECT public: @@ -317,7 +317,7 @@ public: class BlackHole; class BlackHoleConfig : public Config { - Q_OBJECT + TQ_OBJECT public: @@ -354,7 +354,7 @@ protected: }; class BlackHoleTimer : public TQObject { -Q_OBJECT +TQ_OBJECT public: @@ -374,7 +374,7 @@ protected: }; class BlackHole : public TQObject, public Hole { -Q_OBJECT +TQ_OBJECT public: @@ -544,7 +544,7 @@ private: class Bridge; class BridgeConfig : public Config { - Q_OBJECT + TQ_OBJECT public: @@ -617,7 +617,7 @@ public: class Sign; class SignConfig : public BridgeConfig { - Q_OBJECT + TQ_OBJECT public: @@ -666,7 +666,7 @@ protected: }; class WindmillConfig : public BridgeConfig { - Q_OBJECT + TQ_OBJECT public: @@ -714,7 +714,7 @@ public: class HoleInfo; class HoleConfig : public Config { - Q_OBJECT + TQ_OBJECT public: @@ -800,7 +800,7 @@ struct KDE_EXPORT CourseInfo class KDE_EXPORT KolfGame : public TQCanvasView { - Q_OBJECT + TQ_OBJECT public: |