diff options
Diffstat (limited to 'kolf/floater.cpp')
-rw-r--r-- | kolf/floater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kolf/floater.cpp b/kolf/floater.cpp index 24e9484f..dc0f129a 100644 --- a/kolf/floater.cpp +++ b/kolf/floater.cpp @@ -265,7 +265,7 @@ FloaterConfig::FloaterConfig(Floater *floater, TQWidget *parent) 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) |