summaryrefslogtreecommitdiffstats
path: root/kolf/floater.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kolf/floater.cpp')
-rw-r--r--kolf/floater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kolf/floater.cpp b/kolf/floater.cpp
index b2a13ce6..dc0f129a 100644
--- a/kolf/floater.cpp
+++ b/kolf/floater.cpp
@@ -262,10 +262,10 @@ FloaterConfig::FloaterConfig(Floater *floater, TQWidget *parent)
m_vlayout->addWidget(new TQLabel(i18n("Moving speed"), this));
TQHBoxLayout *hlayout = new TQHBoxLayout(m_vlayout, spacingHint());
hlayout->addWidget(new TQLabel(i18n("Slow"), this));
- TQSlider *slider = new TQSlider(0, 20, 2, floater->curSpeed(), Qt::Horizontal, this);
+ TQSlider *slider = new TQSlider(0, 20, 2, floater->curSpeed(), TQt::Horizontal, this);
hlayout->addWidget(slider);
hlayout->addWidget(new TQLabel(i18n("Fast"), this));
- connect(slider, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(speedChanged(int)));
+ connect(slider, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(speedChanged(int)));
}
void FloaterConfig::speedChanged(int news)