summaryrefslogtreecommitdiffstats
path: root/kpat/deck.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commita13e26c2f1eb3c5be81acf4f571dd4bafac10199 (patch)
tree1f1d3e407ae668b1448847970b2f1b626083faf6 /kpat/deck.cpp
parent24c5cdc2737fe0044b11a12359606973eb93fc0b (diff)
downloadtdegames-a13e26c2f1eb3c5be81acf4f571dd4bafac10199.tar.gz
tdegames-a13e26c2f1eb3c5be81acf4f571dd4bafac10199.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpat/deck.cpp')
-rw-r--r--kpat/deck.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpat/deck.cpp b/kpat/deck.cpp
index 860a88b7..c2b6e0e5 100644
--- a/kpat/deck.cpp
+++ b/kpat/deck.cpp
@@ -10,8 +10,8 @@ const int NumberOfCards = 52;
Deck *Deck::my_deck = 0;
-Deck::Deck( Dealer* tqparent, int m, int s )
- : Pile( 0, tqparent ), mult( m )
+Deck::Deck( Dealer* parent, int m, int s )
+ : Pile( 0, parent ), mult( m )
{
_deck = new Card * [mult*NumberOfCards];
Q_CHECK_PTR (_deck);
@@ -44,9 +44,9 @@ Deck::~Deck()
// ----------------------------------------------------------------
-Deck *Deck::new_deck( Dealer *tqparent, int m, int s )
+Deck *Deck::new_deck( Dealer *parent, int m, int s )
{
- my_deck = new Deck(tqparent, m, s);
+ my_deck = new Deck(parent, m, s);
return my_deck;
}