diff options
author | Michele Calgaro <[email protected]> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 20:23:16 +0900 |
commit | e234565531cd8c11949cc6aecf16179e75312458 (patch) | |
tree | 90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /kicker-applets/mediacontrol/mpdInterface.cpp | |
parent | be3456c5d953fb877340a51b2ef699be6b3c7c02 (diff) | |
download | tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
Diffstat (limited to 'kicker-applets/mediacontrol/mpdInterface.cpp')
-rw-r--r-- | kicker-applets/mediacontrol/mpdInterface.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kicker-applets/mediacontrol/mpdInterface.cpp b/kicker-applets/mediacontrol/mpdInterface.cpp index 0f0e1c6..e6182d2 100644 --- a/kicker-applets/mediacontrol/mpdInterface.cpp +++ b/kicker-applets/mediacontrol/mpdInterface.cpp @@ -39,16 +39,16 @@ MpdInterface::MpdInterface() , slider_timer(0) , reconnect_timer(0) { - connect(&sock, TQT_SIGNAL(error(int)), this, TQT_SLOT(connectionError(int))); - connect(&sock, TQT_SIGNAL(error(int)), this, TQT_SLOT(stopSliderClock())); + connect(&sock, TQ_SIGNAL(error(int)), this, TQ_SLOT(connectionError(int))); + connect(&sock, TQ_SIGNAL(error(int)), this, TQ_SLOT(stopSliderClock())); - connect(&sock, TQT_SIGNAL(connected()), this, TQT_SLOT(startSliderClock())); - connect(&sock, TQT_SIGNAL(connected()), this, TQT_SLOT(stopReconnectClock())); - connect(&sock, TQT_SIGNAL(connected()), this, TQT_SLOT(connected())); + connect(&sock, TQ_SIGNAL(connected()), this, TQ_SLOT(startSliderClock())); + connect(&sock, TQ_SIGNAL(connected()), this, TQ_SLOT(stopReconnectClock())); + connect(&sock, TQ_SIGNAL(connected()), this, TQ_SLOT(connected())); - connect(&sock, TQT_SIGNAL(connectionClosed()), this, TQT_SLOT(stopSliderClock())); - connect(&sock, TQT_SIGNAL(connectionClosed()), this, TQT_SLOT(startReconnectClock())); - connect(&sock, TQT_SIGNAL(connectionClosed()), this, TQT_SIGNAL(playerStopped())); + connect(&sock, TQ_SIGNAL(connectionClosed()), this, TQ_SLOT(stopSliderClock())); + connect(&sock, TQ_SIGNAL(connectionClosed()), this, TQ_SLOT(startReconnectClock())); + connect(&sock, TQ_SIGNAL(connectionClosed()), this, TQ_SIGNAL(playerStopped())); reconnect(); } |