diff options
Diffstat (limited to 'certmanager/lib/cryptplugwrapperlist.cpp')
-rw-r--r-- | certmanager/lib/cryptplugwrapperlist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/certmanager/lib/cryptplugwrapperlist.cpp b/certmanager/lib/cryptplugwrapperlist.cpp index 3ff38ddd8..43f88670d 100644 --- a/certmanager/lib/cryptplugwrapperlist.cpp +++ b/certmanager/lib/cryptplugwrapperlist.cpp @@ -25,9 +25,9 @@ #include "cryptplugwrapperlist.h" -CryptPlugWrapper * CryptPlugWrapperList::findForLibName( const QString & libName ) const +CryptPlugWrapper * CryptPlugWrapperList::findForLibName( const TQString & libName ) const { - for ( QPtrListIterator<CryptPlugWrapper> it( *this ) ; it.current() ; ++it ) + for ( TQPtrListIterator<CryptPlugWrapper> it( *this ) ; it.current() ; ++it ) if ( (*it)->libName().find( libName, 0, false ) >= 0 ) return *it; return 0; |