diff options
Diffstat (limited to 'systemsettings/kcmultiwidget.cpp')
-rw-r--r-- | systemsettings/kcmultiwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/systemsettings/kcmultiwidget.cpp b/systemsettings/kcmultiwidget.cpp index 38e740f..d7d1bd0 100644 --- a/systemsettings/kcmultiwidget.cpp +++ b/systemsettings/kcmultiwidget.cpp @@ -147,7 +147,7 @@ void KCMultiWidget::apply() TQStringList * names = moduleParentComponents[ m ]; kdDebug() << k_funcinfo << *names << " saved and added to the list" << endl; for( TQStringList::ConstIterator it = names->begin(); it != names->end(); ++it ) - if( updatedModules.tqfind( *it ) == updatedModules.end() ) + if( updatedModules.find( *it ) == updatedModules.end() ) updatedModules.append( *it ); } } @@ -278,7 +278,7 @@ void KCMultiWidget::addModule(const KCModuleInfo& moduleinfo, return; } KCModuleProxy * module; - if( m_orphanModules.tqcontains( moduleinfo.service() ) ) + if( m_orphanModules.contains( moduleinfo.service() ) ) { // the KCModule already exists - it was removed from the dialog in // removeAllModules |