diff options
Diffstat (limited to 'wizards/servertypemanager.cpp')
-rw-r--r-- | wizards/servertypemanager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/servertypemanager.cpp b/wizards/servertypemanager.cpp index d7c9287f7..fec5bd120 100644 --- a/wizards/servertypemanager.cpp +++ b/wizards/servertypemanager.cpp @@ -54,7 +54,7 @@ TQStringList ServerTypeManager::identifiers() const TQString ServerTypeManager::title( const TQString& identifier ) const { - ServerTypeFactoryMap::ConstIterator it = mServerTypeFactoryMap.tqfind( identifier ); + ServerTypeFactoryMap::ConstIterator it = mServerTypeFactoryMap.find( identifier ); if ( it == mServerTypeFactoryMap.end() ) return TQString(); else @@ -63,9 +63,9 @@ TQString ServerTypeManager::title( const TQString& identifier ) const ServerType* ServerTypeManager::serverType( const TQString& identifier ) { - ServerTypeMap::ConstIterator serverIt = mServerTypeMap.tqfind( identifier ); + ServerTypeMap::ConstIterator serverIt = mServerTypeMap.find( identifier ); if ( serverIt == mServerTypeMap.end() ) { // none server type loaded yet - ServerTypeFactoryMap::Iterator it = mServerTypeFactoryMap.tqfind( identifier ); + ServerTypeFactoryMap::Iterator it = mServerTypeFactoryMap.find( identifier ); if ( it == mServerTypeFactoryMap.end() ) // no factory for this type return 0; |