summaryrefslogtreecommitdiffstats
path: root/kicker-applets/mediacontrol/mediacontrolconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kicker-applets/mediacontrol/mediacontrolconfig.cpp')
-rw-r--r--kicker-applets/mediacontrol/mediacontrolconfig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kicker-applets/mediacontrol/mediacontrolconfig.cpp b/kicker-applets/mediacontrol/mediacontrolconfig.cpp
index 5f5d06a..2636398 100644
--- a/kicker-applets/mediacontrol/mediacontrolconfig.cpp
+++ b/kicker-applets/mediacontrol/mediacontrolconfig.cpp
@@ -106,7 +106,7 @@ void MediaControlConfig::load()
// find the playerstring from config in the playerlist and select it if found
TQListBoxItem *item = 0;
- item = _child->playerListBox->tqfindItem( _configFrontend->player() );
+ item = _child->playerListBox->findItem( _configFrontend->player() );
if ( item )
_child->playerListBox->setCurrentItem ( item );
else
@@ -118,7 +118,7 @@ void MediaControlConfig::load()
_child->mWheelScrollAmount->setValue( _configFrontend->mouseWheelSpeed() );
// Select the used Theme
- item = _child->themeListBox->tqfindItem( _configFrontend->theme() );
+ item = _child->themeListBox->findItem( _configFrontend->theme() );
if ( item )
_child->themeListBox->setCurrentItem( item );
else