summaryrefslogtreecommitdiffstats
path: root/kolf/objects/poolball/poolball.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kolf/objects/poolball/poolball.cpp')
-rw-r--r--kolf/objects/poolball/poolball.cpp8
1 files changed, 4 insertions, 4 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"