diff options
Diffstat (limited to 'certmanager/conf')
-rw-r--r-- | certmanager/conf/dirservconfigpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/certmanager/conf/dirservconfigpage.cpp b/certmanager/conf/dirservconfigpage.cpp index 61a427d80..e95089d8e 100644 --- a/certmanager/conf/dirservconfigpage.cpp +++ b/certmanager/conf/dirservconfigpage.cpp @@ -235,7 +235,7 @@ void DirectoryServicesConfigurationPage::save() KURL::List::const_iterator end = toAdd.end(); for( ; it != end; ++it ) { // check if the URL is already in currentList - if ( currentList.tqfind( *it ) == currentList.end() ) + if ( currentList.find( *it ) == currentList.end() ) // if not, add it currentList.append( *it ); } |