summaryrefslogtreecommitdiffstats
path: root/src/speeddialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:46:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:53:25 +0900
commitf2261138b64a4aceb92971e777c2908651240c8a (patch)
tree9b505dfc39a2962078c275c0f3ab73bb8e7b14d9 /src/speeddialog.cpp
parentcec0eba300cea2230ffbac0a10f65534799c8ac6 (diff)
downloadkcpuload-f2261138.tar.gz
kcpuload-f2261138.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c57b89d561aea0a912900708bd8e9229d9a6d271)
Diffstat (limited to 'src/speeddialog.cpp')
-rw-r--r--src/speeddialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/speeddialog.cpp b/src/speeddialog.cpp
index e6ca5a8..6b3ca7a 100644
--- a/src/speeddialog.cpp
+++ b/src/speeddialog.cpp
@@ -48,8 +48,8 @@ SpeedDialog::SpeedDialog(int defaultSpeed, TQWidget* parent) :
speedStr.setNum(defaultSpeed);
speedBox->setCurrentText(speedStr);
- connect(speedBox, TQT_SIGNAL(textChanged(const TQString&)),
- this, TQT_SLOT(updateSpeed(const TQString&)));
+ connect(speedBox, TQ_SIGNAL(textChanged(const TQString&)),
+ this, TQ_SLOT(updateSpeed(const TQString&)));
}
int SpeedDialog::getSpeed() const {