diff options
Diffstat (limited to 'kpat/klondike.cpp')
-rw-r--r-- | kpat/klondike.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kpat/klondike.cpp b/kpat/klondike.cpp index 1e0d0b79..93514d2f 100644 --- a/kpat/klondike.cpp +++ b/kpat/klondike.cpp @@ -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.tqcontains(const_cast<Card * const>(c))) + if (cardlist.contains(const_cast<Card * const>(c))) return TQSize(+dspread(), 0); return TQSize(0, 0); } |