From afc67225900e0375f32048f4df27f32986704a67 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 6 Nov 2023 11:39:06 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit 4243c1195d662a4e6e0971cef547520ece2c6673) --- kolf/floater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kolf/floater.cpp') diff --git a/kolf/floater.cpp b/kolf/floater.cpp index b2a13ce6..24e9484f 100644 --- a/kolf/floater.cpp +++ b/kolf/floater.cpp @@ -262,7 +262,7 @@ 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))); -- cgit v1.2.1