diff options
Diffstat (limited to 'kpoker/kpoker.h')
-rw-r--r-- | kpoker/kpoker.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/kpoker/kpoker.h b/kpoker/kpoker.h index bb33773d..379ac26c 100644 --- a/kpoker/kpoker.h +++ b/kpoker/kpoker.h @@ -116,7 +116,7 @@ public: PokerPlayer * getActivePlayer(unsigned int nr) { return m_activePlayers.at(nr); } void activatePlayer(PokerPlayer *player); void inactivatePlayer(PokerPlayer *player); - bool isActivePlayer(PokerPlayer *player) const { return m_activePlayers.contains(player); } + bool isActivePlayer(PokerPlayer *player) const { return m_activePlayers.tqcontains(player); } // Misc // FIXME: clearDirty should only be called by a save method @@ -167,12 +167,13 @@ public: // Poker Game View -class kpok : public QWidget +class kpok : public TQWidget { Q_OBJECT + TQ_OBJECT public: - kpok(TQWidget * parent = 0, const char *name = 0); + kpok(TQWidget * tqparent = 0, const char *name = 0); virtual ~kpok(); TQString getName (int playerNr); @@ -324,7 +325,7 @@ class kpok : public QWidget int drawDelay; - // Graphical layout. + // Graphical tqlayout. TQVBoxLayout *topLayout; TQHBoxLayout *inputLayout; TQLabel *potLabel; |