diff options
Diffstat (limited to 'certmanager/lib/cryptplugwrapperlist.cpp')
-rw-r--r-- | certmanager/lib/cryptplugwrapperlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/certmanager/lib/cryptplugwrapperlist.cpp b/certmanager/lib/cryptplugwrapperlist.cpp index 43f88670d..7b1c75722 100644 --- a/certmanager/lib/cryptplugwrapperlist.cpp +++ b/certmanager/lib/cryptplugwrapperlist.cpp @@ -28,7 +28,7 @@ CryptPlugWrapper * CryptPlugWrapperList::findForLibName( const TQString & libName ) const { for ( TQPtrListIterator<CryptPlugWrapper> it( *this ) ; it.current() ; ++it ) - if ( (*it)->libName().find( libName, 0, false ) >= 0 ) + if ( (*it)->libName().tqfind( libName, 0, false ) >= 0 ) return *it; return 0; } |