diff options
Diffstat (limited to 'kpat/klondike.cpp')
-rw-r--r-- | kpat/klondike.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kpat/klondike.cpp b/kpat/klondike.cpp index 93514d2f..dcf4c1f8 100644 --- a/kpat/klondike.cpp +++ b/kpat/klondike.cpp @@ -32,8 +32,8 @@ class KlondikePile : public Pile { public: - KlondikePile( int _index, Dealer* tqparent) - : Pile(_index, tqparent) {} + KlondikePile( int _index, Dealer* parent) + : Pile(_index, parent) {} void clearSpread() { cardlist.clear(); } @@ -50,8 +50,8 @@ private: CardList cardlist; }; -Klondike::Klondike( bool easy, KMainWindow* tqparent, const char* _name ) - : Dealer( tqparent, _name ) +Klondike::Klondike( bool easy, KMainWindow* parent, const char* _name ) + : Dealer( parent, _name ) { // The units of the follwoing constants are pixels const int margin = 10; // between card piles and board edge @@ -481,14 +481,14 @@ static class LocalDealerInfo0 : public DealerInfo { public: LocalDealerInfo0() : DealerInfo(I18N_NOOP("&Klondike"), 0) {} - virtual Dealer *createGame(KMainWindow *tqparent) { return new Klondike(true, tqparent); } + virtual Dealer *createGame(KMainWindow *parent) { return new Klondike(true, parent); } } ldi0; static class LocalDealerInfo14 : public DealerInfo { public: LocalDealerInfo14() : DealerInfo(I18N_NOOP("Klondike (&draw 3)"), 13) {} - virtual Dealer *createGame(KMainWindow *tqparent) { return new Klondike(false, tqparent); } + virtual Dealer *createGame(KMainWindow *parent) { return new Klondike(false, parent); } } ldi14; |