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 /kbounce/game.h | |
parent | a5c3a83e1a931b5af4387f05f7204a2007ae71a1 (diff) | |
download | tdegames-5106f93512659db1a236db49febc5ed1a45e3384.tar.gz tdegames-5106f93512659db1a236db49febc5ed1a45e3384.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kbounce/game.h')
-rw-r--r-- | kbounce/game.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kbounce/game.h b/kbounce/game.h index 7cdd1c39..967197eb 100644 --- a/kbounce/game.h +++ b/kbounce/game.h @@ -53,7 +53,7 @@ class Ball : public TQCanvasSprite class Wall : public TQObject { Q_OBJECT - TQ_OBJECT + public: enum Direction { Up, Down, Left, Right }; @@ -87,7 +87,7 @@ private: class JezzField : public TQCanvas { Q_OBJECT - TQ_OBJECT + public: JezzField( const TQPixmap &tiles, const TQPixmap &background, TQObject* parent = 0, const char* name = 0 ); @@ -113,7 +113,7 @@ private: class JezzView : public TQCanvasView { Q_OBJECT - TQ_OBJECT + public: JezzView(TQCanvas* viewing=0, TQWidget* parent=0, const char* name=0, WFlags f=0); @@ -131,7 +131,7 @@ private: class JezzGame : public TQWidget { Q_OBJECT - TQ_OBJECT + public: JezzGame( const TQPixmap &background, int ballNum, TQWidget *parent=0, const char *name=0 ); |