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 /kpat | |
parent | a5c3a83e1a931b5af4387f05f7204a2007ae71a1 (diff) | |
download | tdegames-5106f93512659db1a236db49febc5ed1a45e3384.tar.gz tdegames-5106f93512659db1a236db49febc5ed1a45e3384.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kpat')
-rw-r--r-- | kpat/card.h | 2 | ||||
-rw-r--r-- | kpat/clock.h | 2 | ||||
-rw-r--r-- | kpat/computation.h | 2 | ||||
-rw-r--r-- | kpat/dealer.h | 2 | ||||
-rw-r--r-- | kpat/fortyeight.h | 4 | ||||
-rw-r--r-- | kpat/freecell.h | 2 | ||||
-rw-r--r-- | kpat/golf.h | 4 | ||||
-rw-r--r-- | kpat/grandf.h | 2 | ||||
-rw-r--r-- | kpat/gypsy.h | 2 | ||||
-rw-r--r-- | kpat/idiot.h | 2 | ||||
-rw-r--r-- | kpat/kings.h | 2 | ||||
-rw-r--r-- | kpat/klondike.h | 2 | ||||
-rw-r--r-- | kpat/mod3.h | 2 | ||||
-rw-r--r-- | kpat/napoleon.h | 2 | ||||
-rw-r--r-- | kpat/pile.h | 2 | ||||
-rw-r--r-- | kpat/pwidget.h | 2 | ||||
-rw-r--r-- | kpat/simon.h | 2 | ||||
-rw-r--r-- | kpat/spider.h | 2 | ||||
-rw-r--r-- | kpat/yukon.h | 2 |
19 files changed, 21 insertions, 21 deletions
diff --git a/kpat/card.h b/kpat/card.h index 109f3e87..aa253be5 100644 --- a/kpat/card.h +++ b/kpat/card.h @@ -47,7 +47,7 @@ typedef TQValueList<Card*> CardList; // class Card: public TQObject, public TQCanvasRectangle { Q_OBJECT - TQ_OBJECT + public: enum Suit { Clubs = 1, Diamonds, Hearts, Spades }; diff --git a/kpat/clock.h b/kpat/clock.h index 0107fec8..a126b0fc 100644 --- a/kpat/clock.h +++ b/kpat/clock.h @@ -5,7 +5,7 @@ class Clock : public Dealer { Q_OBJECT - TQ_OBJECT + public: Clock( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/computation.h b/kpat/computation.h index b1658d57..1aded3b1 100644 --- a/kpat/computation.h +++ b/kpat/computation.h @@ -30,7 +30,7 @@ class Computation : public Dealer { Q_OBJECT - TQ_OBJECT + public: Computation( KMainWindow *parent = 0, const char *name=0 ); diff --git a/kpat/dealer.h b/kpat/dealer.h index 5c4e60f1..814e33d4 100644 --- a/kpat/dealer.h +++ b/kpat/dealer.h @@ -57,7 +57,7 @@ struct State class Dealer: public TQCanvasView { Q_OBJECT - TQ_OBJECT + public: diff --git a/kpat/fortyeight.h b/kpat/fortyeight.h index 3bb43b2b..fcf6c4a5 100644 --- a/kpat/fortyeight.h +++ b/kpat/fortyeight.h @@ -6,7 +6,7 @@ class HorLeftPile : public Pile { Q_OBJECT - TQ_OBJECT + public: HorLeftPile( int _index, Dealer* parent = 0); @@ -17,7 +17,7 @@ public: class Fortyeight : public Dealer { Q_OBJECT - TQ_OBJECT + public: Fortyeight( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/freecell.h b/kpat/freecell.h index 5b769249..aaa1d55b 100644 --- a/kpat/freecell.h +++ b/kpat/freecell.h @@ -34,7 +34,7 @@ public: class FreecellBase : public Dealer { Q_OBJECT - TQ_OBJECT + public: FreecellBase( int decks, int stores, int freecells, int es_filling, bool unlimited_move, diff --git a/kpat/golf.h b/kpat/golf.h index 68937eb0..7227c478 100644 --- a/kpat/golf.h +++ b/kpat/golf.h @@ -6,7 +6,7 @@ class HorRightPile : public Pile { Q_OBJECT - TQ_OBJECT + public: HorRightPile( int _index, Dealer* parent = 0); @@ -16,7 +16,7 @@ public: class Golf : public Dealer { Q_OBJECT - TQ_OBJECT + public: Golf( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/grandf.h b/kpat/grandf.h index e2ff1939..77f368a2 100644 --- a/kpat/grandf.h +++ b/kpat/grandf.h @@ -36,7 +36,7 @@ class KMainWindow; class Grandf : public Dealer { Q_OBJECT - TQ_OBJECT + public: Grandf( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/gypsy.h b/kpat/gypsy.h index 90adff42..beb3e6ea 100644 --- a/kpat/gypsy.h +++ b/kpat/gypsy.h @@ -11,7 +11,7 @@ class KMainWindow; class Gypsy : public Dealer { Q_OBJECT - TQ_OBJECT + public: Gypsy( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/idiot.h b/kpat/idiot.h index 21d68b88..d0871b56 100644 --- a/kpat/idiot.h +++ b/kpat/idiot.h @@ -29,7 +29,7 @@ class Idiot: public Dealer { Q_OBJECT - TQ_OBJECT + public: diff --git a/kpat/kings.h b/kpat/kings.h index 10afa8d6..881110fc 100644 --- a/kpat/kings.h +++ b/kpat/kings.h @@ -9,7 +9,7 @@ class KMainWindow; class Kings : public FreecellBase { Q_OBJECT - TQ_OBJECT + public: Kings( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/klondike.h b/kpat/klondike.h index 959244ea..75ff9fe4 100644 --- a/kpat/klondike.h +++ b/kpat/klondike.h @@ -33,7 +33,7 @@ class KlondikePile; class Klondike : public Dealer { Q_OBJECT - TQ_OBJECT + public: Klondike( bool easy, KMainWindow* parent=0, const char* name=0); diff --git a/kpat/mod3.h b/kpat/mod3.h index 60b9172a..1eb19fef 100644 --- a/kpat/mod3.h +++ b/kpat/mod3.h @@ -28,7 +28,7 @@ class Mod3 : public Dealer { Q_OBJECT - TQ_OBJECT + public: Mod3( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/napoleon.h b/kpat/napoleon.h index dd7b9d90..89342331 100644 --- a/kpat/napoleon.h +++ b/kpat/napoleon.h @@ -26,7 +26,7 @@ class Napoleon : public Dealer { Q_OBJECT - TQ_OBJECT + public: Napoleon (KMainWindow* parent=0, const char* name=0); diff --git a/kpat/pile.h b/kpat/pile.h index c30e7c20..0ebabe70 100644 --- a/kpat/pile.h +++ b/kpat/pile.h @@ -18,7 +18,7 @@ class Dealer; class Pile : public TQObject, public TQCanvasRectangle { Q_OBJECT - TQ_OBJECT + public: diff --git a/kpat/pwidget.h b/kpat/pwidget.h index 1ff0367c..b07eb917 100644 --- a/kpat/pwidget.h +++ b/kpat/pwidget.h @@ -35,7 +35,7 @@ class TQLabel; class pWidget: public KMainWindow { Q_OBJECT - TQ_OBJECT + public: pWidget(); diff --git a/kpat/simon.h b/kpat/simon.h index 14eefa20..bcf2300b 100644 --- a/kpat/simon.h +++ b/kpat/simon.h @@ -5,7 +5,7 @@ class Simon : public Dealer { Q_OBJECT - TQ_OBJECT + public: Simon( KMainWindow* parent=0, const char* name=0); diff --git a/kpat/spider.h b/kpat/spider.h index a3b591a6..4a3e9cc0 100644 --- a/kpat/spider.h +++ b/kpat/spider.h @@ -34,7 +34,7 @@ public: class Spider : public Dealer { Q_OBJECT - TQ_OBJECT + public: Spider(int suits, KMainWindow *parent=0, const char *name=0); diff --git a/kpat/yukon.h b/kpat/yukon.h index dbfcea6f..a11cfbee 100644 --- a/kpat/yukon.h +++ b/kpat/yukon.h @@ -5,7 +5,7 @@ class Yukon : public Dealer { Q_OBJECT - TQ_OBJECT + public: Yukon( KMainWindow* parent=0, const char* name=0); |