summaryrefslogtreecommitdiffstats
path: root/kpat/klondike.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpat/klondike.cpp')
-rw-r--r--kpat/klondike.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kpat/klondike.cpp b/kpat/klondike.cpp
index dcf4c1f8..1e0d0b79 100644
--- a/kpat/klondike.cpp
+++ b/kpat/klondike.cpp
@@ -32,8 +32,8 @@
class KlondikePile : public Pile
{
public:
- KlondikePile( int _index, Dealer* parent)
- : Pile(_index, parent) {}
+ KlondikePile( int _index, Dealer* tqparent)
+ : Pile(_index, tqparent) {}
void clearSpread() { cardlist.clear(); }
@@ -42,7 +42,7 @@ public:
}
virtual TQSize cardOffset( bool _spread, bool, const Card *c) const {
kdDebug(11111) << "cardOffset " << _spread << " " << (c? c->name() : "(null)") << endl;
- if (cardlist.contains(const_cast<Card * const>(c)))
+ if (cardlist.tqcontains(const_cast<Card * const>(c)))
return TQSize(+dspread(), 0);
return TQSize(0, 0);
}
@@ -50,8 +50,8 @@ private:
CardList cardlist;
};
-Klondike::Klondike( bool easy, KMainWindow* parent, const char* _name )
- : Dealer( parent, _name )
+Klondike::Klondike( bool easy, KMainWindow* tqparent, const char* _name )
+ : Dealer( tqparent, _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 *parent) { return new Klondike(true, parent); }
+ virtual Dealer *createGame(KMainWindow *tqparent) { return new Klondike(true, tqparent); }
} ldi0;
static class LocalDealerInfo14 : public DealerInfo
{
public:
LocalDealerInfo14() : DealerInfo(I18N_NOOP("Klondike (&draw 3)"), 13) {}
- virtual Dealer *createGame(KMainWindow *parent) { return new Klondike(false, parent); }
+ virtual Dealer *createGame(KMainWindow *tqparent) { return new Klondike(false, tqparent); }
} ldi14;