summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/cryptplugfactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/cryptplugfactory.cpp')
-rw-r--r--certmanager/lib/cryptplugfactory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/certmanager/lib/cryptplugfactory.cpp b/certmanager/lib/cryptplugfactory.cpp
index 7000d9a90..949e8db9b 100644
--- a/certmanager/lib/cryptplugfactory.cpp
+++ b/certmanager/lib/cryptplugfactory.cpp
@@ -84,8 +84,8 @@ CryptPlugWrapper * KMail::CryptPlugFactory::active() const {
return 0;
}
-CryptPlugWrapper * KMail::CryptPlugFactory::createForProtocol( const QString & proto ) const {
- QString p = proto.lower();
+CryptPlugWrapper * KMail::CryptPlugFactory::createForProtocol( const TQString & proto ) const {
+ TQString p = proto.lower();
if ( p == "application/pkcs7-signature" || p == "application/x-pkcs7-signature" )
return smime();
if ( p == "application/pgp-signature" || p == "application/x-pgp-signature" )
@@ -101,7 +101,7 @@ CryptPlugWrapper * KMail::CryptPlugFactory::openpgp() const {
return mCryptPlugWrapperList->findForLibName( "openpgp" );
}
-void KMail::CryptPlugFactory::scanForBackends( QStringList * reason ) {
+void KMail::CryptPlugFactory::scanForBackends( TQStringList * reason ) {
Kleo::CryptoBackendFactory::scanForBackends( reason );
updateCryptPlugWrapperList();
}