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 /kpoker | |
parent | a5c3a83e1a931b5af4387f05f7204a2007ae71a1 (diff) | |
download | tdegames-5106f93512659db1a236db49febc5ed1a45e3384.tar.gz tdegames-5106f93512659db1a236db49febc5ed1a45e3384.zip |
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kpoker')
-rw-r--r-- | kpoker/betbox.h | 2 | ||||
-rw-r--r-- | kpoker/kpaint.h | 4 | ||||
-rw-r--r-- | kpoker/kpoker.h | 2 | ||||
-rw-r--r-- | kpoker/newgamedlg.h | 2 | ||||
-rw-r--r-- | kpoker/optionsdlg.h | 2 | ||||
-rw-r--r-- | kpoker/playerbox.h | 2 | ||||
-rw-r--r-- | kpoker/top.h | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/kpoker/betbox.h b/kpoker/betbox.h index 8b335e03..2fbb892c 100644 --- a/kpoker/betbox.h +++ b/kpoker/betbox.h @@ -33,7 +33,7 @@ class TQPushButton; class BetBox : public TQGroupBox { Q_OBJECT - TQ_OBJECT + public: BetBox(TQWidget* parent = 0, const char* name = 0); diff --git a/kpoker/kpaint.h b/kpoker/kpaint.h index fe1440ee..119a2ba9 100644 --- a/kpoker/kpaint.h +++ b/kpoker/kpaint.h @@ -36,7 +36,7 @@ class TQLabel; class CardImages : public TQWidget { Q_OBJECT - TQ_OBJECT + public: CardImages( TQWidget *parent = 0, const char *name = 0 ); @@ -67,7 +67,7 @@ class CardImages : public TQWidget class CardWidget : public TQPushButton { Q_OBJECT - TQ_OBJECT + public: CardWidget( TQWidget *parent=0, const char *name=0 ); diff --git a/kpoker/kpoker.h b/kpoker/kpoker.h index 732a2af5..6e789a5d 100644 --- a/kpoker/kpoker.h +++ b/kpoker/kpoker.h @@ -170,7 +170,7 @@ public: class kpok : public TQWidget { Q_OBJECT - TQ_OBJECT + public: kpok(TQWidget * parent = 0, const char *name = 0); diff --git a/kpoker/newgamedlg.h b/kpoker/newgamedlg.h index 22662b55..05df1a31 100644 --- a/kpoker/newgamedlg.h +++ b/kpoker/newgamedlg.h @@ -39,7 +39,7 @@ class TQComboBox; class NewGameDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: NewGameDlg(TQWidget* parent = 0); diff --git a/kpoker/optionsdlg.h b/kpoker/optionsdlg.h index 5c62ef19..c9fcb908 100644 --- a/kpoker/optionsdlg.h +++ b/kpoker/optionsdlg.h @@ -39,7 +39,7 @@ class KIntNumInput; class OptionsDlg : public KDialogBase { Q_OBJECT - TQ_OBJECT + public: OptionsDlg(TQWidget* parent = 0, const char* name = 0, int _players = 1); diff --git a/kpoker/playerbox.h b/kpoker/playerbox.h index a0205ed0..755bcb1f 100644 --- a/kpoker/playerbox.h +++ b/kpoker/playerbox.h @@ -32,7 +32,7 @@ class CardWidget; class PlayerBox : public TQGroupBox { Q_OBJECT - TQ_OBJECT + public: PlayerBox(bool playerOne, TQWidget* parent = 0, const char* name = 0); diff --git a/kpoker/top.h b/kpoker/top.h index 843528cb..330c568d 100644 --- a/kpoker/top.h +++ b/kpoker/top.h @@ -30,7 +30,7 @@ class kpok; class PokerWindow : public KMainWindow { Q_OBJECT - TQ_OBJECT + public: PokerWindow(); |