summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/charlatan/seeker.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:35:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 20:23:16 +0900
commite234565531cd8c11949cc6aecf16179e75312458 (patch)
tree90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /noatun-plugins/charlatan/seeker.cpp
parentbe3456c5d953fb877340a51b2ef699be6b3c7c02 (diff)
downloadtdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz
tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
Diffstat (limited to 'noatun-plugins/charlatan/seeker.cpp')
-rw-r--r--noatun-plugins/charlatan/seeker.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/charlatan/seeker.cpp b/noatun-plugins/charlatan/seeker.cpp
index 8e639d8..c740c53 100644
--- a/noatun-plugins/charlatan/seeker.cpp
+++ b/noatun-plugins/charlatan/seeker.cpp
@@ -33,12 +33,12 @@ Seeker::Seeker(TQWidget * parent)
{
delayedUpdateTimer_ = new TQTimer(this);
- connect(this, TQT_SIGNAL(sliderPressed()), TQT_SLOT(slotSliderPressed()));
- connect(this, TQT_SIGNAL(sliderReleased()), TQT_SLOT(slotSliderReleased()));
- connect(this, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(slotValueChanged(int)));
+ connect(this, TQ_SIGNAL(sliderPressed()), TQ_SLOT(slotSliderPressed()));
+ connect(this, TQ_SIGNAL(sliderReleased()), TQ_SLOT(slotSliderReleased()));
+ connect(this, TQ_SIGNAL(valueChanged(int)), TQ_SLOT(slotValueChanged(int)));
- connect(napp->player(), TQT_SIGNAL(timeout()), TQT_SLOT(slotTimeout()));
- connect(delayedUpdateTimer_, TQT_SIGNAL(timeout()), TQT_SLOT(slotDelayedUpdate()));
+ connect(napp->player(), TQ_SIGNAL(timeout()), TQ_SLOT(slotTimeout()));
+ connect(delayedUpdateTimer_, TQ_SIGNAL(timeout()), TQ_SLOT(slotDelayedUpdate()));
}
Seeker::~Seeker()