summaryrefslogtreecommitdiffstats
path: root/kicker-applets/mediacontrol/jukInterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker-applets/mediacontrol/jukInterface.cpp')
-rw-r--r--kicker-applets/mediacontrol/jukInterface.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kicker-applets/mediacontrol/jukInterface.cpp b/kicker-applets/mediacontrol/jukInterface.cpp
index ce9de9f..67e4b4a 100644
--- a/kicker-applets/mediacontrol/jukInterface.cpp
+++ b/kicker-applets/mediacontrol/jukInterface.cpp
@@ -32,16 +32,16 @@ JuKInterface::JuKInterface() : PlayerInterface(), mProc(0)
mTimerValue = TIMER_FAST;
mJuKTimer = new TQTimer ( this, "mJukTimer" );
- connect(mJuKTimer, TQT_SIGNAL(timeout()), TQT_SLOT(updateSlider()) );
+ connect(mJuKTimer, TQ_SIGNAL(timeout()), TQ_SLOT(updateSlider()) );
kapp->dcopClient()->setNotifications ( true );
- connect(kapp->dcopClient(), TQT_SIGNAL(applicationRegistered(const TQCString&)),
- TQT_SLOT(appRegistered(const TQCString&)) );
+ connect(kapp->dcopClient(), TQ_SIGNAL(applicationRegistered(const TQCString&)),
+ TQ_SLOT(appRegistered(const TQCString&)) );
- connect(kapp->dcopClient(), TQT_SIGNAL(applicationRemoved(const TQCString&)),
- TQT_SLOT(appRemoved(const TQCString&)));
+ connect(kapp->dcopClient(), TQ_SIGNAL(applicationRemoved(const TQCString&)),
+ TQ_SLOT(appRemoved(const TQCString&)));
- TQTimer::singleShot(0, this, TQT_SLOT(myInit()));
+ TQTimer::singleShot(0, this, TQ_SLOT(myInit()));
}
JuKInterface::~JuKInterface()
@@ -86,7 +86,7 @@ void JuKInterface::appRegistered ( const TQCString &appId )
mProc->addArgument("Player");
mProc->addArgument("status()");
- connect(mProc, TQT_SIGNAL(processExited()), TQT_SLOT(jukIsReady()));
+ connect(mProc, TQ_SIGNAL(processExited()), TQ_SLOT(jukIsReady()));
mProc->start();
}
}