diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | a13e26c2f1eb3c5be81acf4f571dd4bafac10199 (patch) | |
tree | 1f1d3e407ae668b1448847970b2f1b626083faf6 /ktron | |
parent | 24c5cdc2737fe0044b11a12359606973eb93fc0b (diff) | |
download | tdegames-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 'ktron')
-rw-r--r-- | ktron/ktron.cpp | 2 | ||||
-rw-r--r-- | ktron/ktron.h | 2 | ||||
-rw-r--r-- | ktron/tron.cpp | 4 | ||||
-rw-r--r-- | ktron/tron.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/ktron/ktron.cpp b/ktron/ktron.cpp index 16628fd9..9057f7c0 100644 --- a/ktron/ktron.cpp +++ b/ktron/ktron.cpp @@ -42,7 +42,7 @@ /** * Constuctor */ -KTron::KTron(TQWidget *tqparent, const char *name) : KMainWindow(tqparent, name) { +KTron::KTron(TQWidget *parent, const char *name) : KMainWindow(parent, name) { playerPoints[0]=playerPoints[1]=0; tron=new Tron(this, "Tron"); diff --git a/ktron/ktron.h b/ktron/ktron.h index e4b9b218..a46c008c 100644 --- a/ktron/ktron.h +++ b/ktron/ktron.h @@ -42,7 +42,7 @@ Q_OBJECT TQ_OBJECT public: - KTron(TQWidget *tqparent=0, const char *name=0); + KTron(TQWidget *parent=0, const char *name=0); private: KAccel *accel; diff --git a/ktron/tron.cpp b/ktron/tron.cpp index c168070d..9ed00d8c 100644 --- a/ktron/tron.cpp +++ b/ktron/tron.cpp @@ -41,8 +41,8 @@ * init-functions **/ -Tron::Tron(TQWidget *tqparent,const char *name) - : TQWidget(tqparent,name) +Tron::Tron(TQWidget *parent,const char *name) + : TQWidget(parent,name) { pixmap=0; playfield=0; diff --git a/ktron/tron.h b/ktron/tron.h index 16e8722b..db0533f5 100644 --- a/ktron/tron.h +++ b/ktron/tron.h @@ -49,7 +49,7 @@ class Tron : public TQWidget TQ_OBJECT public: - Tron(TQWidget *tqparent=0, const char *name=0); + Tron(TQWidget *parent=0, const char *name=0); ~Tron(); void setActionCollection(KActionCollection*); void updatePixmap(); |