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 /kolf/objects | |
parent | a5c3a83e1a931b5af4387f05f7204a2007ae71a1 (diff) | |
download | tdegames-5106f93512659db1a236db49febc5ed1a45e3384.tar.gz tdegames-5106f93512659db1a236db49febc5ed1a45e3384.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kolf/objects')
-rw-r--r-- | kolf/objects/poolball/poolball.h | 4 | ||||
-rw-r--r-- | kolf/objects/test/test.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kolf/objects/poolball/poolball.h b/kolf/objects/poolball/poolball.h index db09f7bd..ca2ffa80 100644 --- a/kolf/objects/poolball/poolball.h +++ b/kolf/objects/poolball/poolball.h @@ -17,7 +17,7 @@ class KConfig; class PoolBallFactory : KLibFactory { Q_OBJECT - TQ_OBJECT + public: TQObject *createObject(TQObject *, const char *, const char *, const TQStringList & = TQStringList()); @@ -48,7 +48,7 @@ private: class PoolBallConfig : public Config { Q_OBJECT - TQ_OBJECT + public: PoolBallConfig(PoolBall *poolBall, TQWidget *parent); diff --git a/kolf/objects/test/test.h b/kolf/objects/test/test.h index d4f00f41..b7aa0be5 100644 --- a/kolf/objects/test/test.h +++ b/kolf/objects/test/test.h @@ -13,7 +13,7 @@ class KConfig; class TestFactory : KLibFactory { Q_OBJECT - TQ_OBJECT + public: TQObject *createObject(TQObject *, const char *, const char *, const TQStringList & = TQStringList()); @@ -41,7 +41,7 @@ private: class TestConfig : public Config { Q_OBJECT - TQ_OBJECT + public: TestConfig(Test *test, TQWidget *parent); |