diff options
Diffstat (limited to 'certmanager/lib/backends/chiasmus/chiasmusbackend.cpp')
-rw-r--r-- | certmanager/lib/backends/chiasmus/chiasmusbackend.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/lib/backends/chiasmus/chiasmusbackend.cpp b/certmanager/lib/backends/chiasmus/chiasmusbackend.cpp index e47909e28..b3e751400 100644 --- a/certmanager/lib/backends/chiasmus/chiasmusbackend.cpp +++ b/certmanager/lib/backends/chiasmus/chiasmusbackend.cpp @@ -378,11 +378,11 @@ public: RefreshKeysJob * refreshKeysJob() const { return 0; } SpecialJob * specialJob( const char * type, const TQMap<TQString,TQVariant> & args ) const { - if ( qstricmp( type, "x-obtain-keys" ) == 0 && args.size() == 0 ) + if ( tqstricmp( type, "x-obtain-keys" ) == 0 && args.size() == 0 ) return new ObtainKeysJob(); - if ( qstricmp( type, "x-encrypt" ) == 0 && args.size() == 0 ) + if ( tqstricmp( type, "x-encrypt" ) == 0 && args.size() == 0 ) return new ChiasmusJob( ChiasmusJob::Encrypt ); - if ( qstricmp( type, "x-decrypt" ) == 0 && args.size() == 0 ) + if ( tqstricmp( type, "x-decrypt" ) == 0 && args.size() == 0 ) return new ChiasmusJob( ChiasmusJob::Decrypt ); kdDebug(5150) << "ChiasmusBackend::Protocol: tried to instantiate unknown job type \"" << type << "\"" << endl; @@ -422,7 +422,7 @@ Kleo::CryptoConfig * Kleo::ChiasmusBackend::config() const { } Kleo::CryptoBackend::Protocol * Kleo::ChiasmusBackend::protocol( const char * name ) const { - if ( qstricmp( name, "Chiasmus" ) != 0 ) + if ( tqstricmp( name, "Chiasmus" ) != 0 ) return 0; if ( !mProtocol ) if ( checkForChiasmus() ) @@ -464,7 +464,7 @@ bool Kleo::ChiasmusBackend::checkForChiasmus( TQString * reason ) const { } bool Kleo::ChiasmusBackend::checkForProtocol( const char * name, TQString * reason ) const { - if ( qstricmp( name, "Chiasmus" ) == 0 ) + if ( tqstricmp( name, "Chiasmus" ) == 0 ) return checkForChiasmus( reason ); if ( reason ) *reason = i18n( "Unsupported protocol \"%1\"" ).arg( name ); @@ -472,7 +472,7 @@ bool Kleo::ChiasmusBackend::checkForProtocol( const char * name, TQString * reas } bool Kleo::ChiasmusBackend::supportsProtocol( const char * name ) const { - return qstricmp( name, "Chiasmus" ) == 0; + return tqstricmp( name, "Chiasmus" ) == 0; } const char * Kleo::ChiasmusBackend::enumerateProtocols( int i ) const { |