diff options
Diffstat (limited to 'kolf/objects/poolball')
-rw-r--r-- | kolf/objects/poolball/poolball.cpp | 8 | ||||
-rw-r--r-- | kolf/objects/poolball/poolball.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/kolf/objects/poolball/poolball.cpp b/kolf/objects/poolball/poolball.cpp index 18d3ca5b..10a26b9c 100644 --- a/kolf/objects/poolball/poolball.cpp +++ b/kolf/objects/poolball/poolball.cpp @@ -54,8 +54,8 @@ void PoolBall::draw(TQPainter &p) Ball::draw(p); } -PoolBallConfig::PoolBallConfig(PoolBall *poolBall, TQWidget *tqparent) - : Config(tqparent), m_poolBall(poolBall) +PoolBallConfig::PoolBallConfig(PoolBall *poolBall, TQWidget *parent) + : Config(parent), m_poolBall(poolBall) { TQVBoxLayout *tqlayout = new TQVBoxLayout(this, marginHint(), spacingHint()); @@ -78,9 +78,9 @@ void PoolBallConfig::numberChanged(int newNumber) changed(); } -Config *PoolBall::config(TQWidget *tqparent) +Config *PoolBall::config(TQWidget *parent) { - return new PoolBallConfig(this, tqparent); + return new PoolBallConfig(this, parent); } #include "poolball.moc" diff --git a/kolf/objects/poolball/poolball.h b/kolf/objects/poolball/poolball.h index fac2ef11..db09f7bd 100644 --- a/kolf/objects/poolball/poolball.h +++ b/kolf/objects/poolball/poolball.h @@ -30,7 +30,7 @@ public: virtual bool deleteable() const { return true; } - virtual Config *config(TQWidget *tqparent); + virtual Config *config(TQWidget *parent); virtual void saveState(StateDB *); virtual void save(KConfig *cfg); virtual void loadState(StateDB *); @@ -51,7 +51,7 @@ class PoolBallConfig : public Config TQ_OBJECT public: - PoolBallConfig(PoolBall *poolBall, TQWidget *tqparent); + PoolBallConfig(PoolBall *poolBall, TQWidget *parent); private slots: void numberChanged(int); |