diff options
Diffstat (limited to 'lib/catalog/catalog.cpp')
-rw-r--r-- | lib/catalog/catalog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/catalog/catalog.cpp b/lib/catalog/catalog.cpp index 5ece8b2b..d8bff1bc 100644 --- a/lib/catalog/catalog.cpp +++ b/lib/catalog/catalog.cpp @@ -48,7 +48,7 @@ struct _Catalog_Private bool hasIndex( const TQCString& name ) const { - return indexList.tqcontains( name ); + return indexList.contains( name ); } DB* index( const TQCString& name ) @@ -172,7 +172,7 @@ void Catalog::setEnabled( bool isEnabled ) { Q_ASSERT( d->dbp != 0 ); - TQMap<TQCString, DB*>::Iterator it = d->indexList.tqfind( name ); + TQMap<TQCString, DB*>::Iterator it = d->indexList.find( name ); if( it == d->indexList.end() ){ DB* dbp = 0; |