diff options
Diffstat (limited to 'kicker-applets/mediacontrol/jukInterface.cpp')
-rw-r--r-- | kicker-applets/mediacontrol/jukInterface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kicker-applets/mediacontrol/jukInterface.cpp b/kicker-applets/mediacontrol/jukInterface.cpp index 6ac8b49..b055424 100644 --- a/kicker-applets/mediacontrol/jukInterface.cpp +++ b/kicker-applets/mediacontrol/jukInterface.cpp @@ -68,7 +68,7 @@ void JuKInterface::myInit() void JuKInterface::appRegistered ( const TQCString &appId ) { - if(appId.tqcontains("juk",false) ) + if(appId.contains("juk",false) ) { mAppId = appId; @@ -93,7 +93,7 @@ void JuKInterface::appRegistered ( const TQCString &appId ) void JuKInterface::appRemoved ( const TQCString &appId ) { - if ( appId.tqcontains("juk",false) ) + if ( appId.contains("juk",false) ) { // is there still another juk alive? if ( findRunningJuK() ) @@ -282,7 +282,7 @@ bool JuKInterface::findRunningJuK() for (iterator = allApps.constBegin(); iterator != allApps.constEnd(); ++iterator) { - if ((*iterator).tqcontains("juk",false)) + if ((*iterator).contains("juk",false)) { mAppId = *iterator; return true; |