summaryrefslogtreecommitdiffstats
path: root/wizards/servertypemanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/servertypemanager.cpp')
-rw-r--r--wizards/servertypemanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/wizards/servertypemanager.cpp b/wizards/servertypemanager.cpp
index d7c9287f..fec5bd12 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;