diff options
Diffstat (limited to 'certmanager/lib/kleo/cryptobackend.h')
-rw-r--r-- | certmanager/lib/kleo/cryptobackend.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/certmanager/lib/kleo/cryptobackend.h b/certmanager/lib/kleo/cryptobackend.h index a94e1ae3a..a004fc899 100644 --- a/certmanager/lib/kleo/cryptobackend.h +++ b/certmanager/lib/kleo/cryptobackend.h @@ -33,7 +33,7 @@ #ifndef __KLEO_CRYPTOBACKEND_H__ #define __KLEO_CRYPTOBACKEND_H__ -#include <qstring.h> +#include <tqstring.h> namespace Kleo { class CryptoConfig; @@ -69,12 +69,12 @@ namespace Kleo { virtual ~CryptoBackend() {} - virtual QString name() const = 0; - virtual QString displayName() const = 0; + virtual TQString name() const = 0; + virtual TQString displayName() const = 0; - virtual bool checkForOpenPGP( QString * reason=0 ) const = 0; - virtual bool checkForSMIME( QString * reason=0 ) const = 0; - virtual bool checkForProtocol( const char * name, QString * reason=0 ) const = 0; + virtual bool checkForOpenPGP( TQString * reason=0 ) const = 0; + virtual bool checkForSMIME( TQString * reason=0 ) const = 0; + virtual bool checkForProtocol( const char * name, TQString * reason=0 ) const = 0; virtual bool supportsOpenPGP() const = 0; virtual bool supportsSMIME() const = 0; @@ -93,9 +93,9 @@ namespace Kleo { public: virtual ~Protocol() {} - virtual QString name() const = 0; + virtual TQString name() const = 0; - virtual QString displayName() const = 0; + virtual TQString displayName() const = 0; virtual KeyListJob * keyListJob( bool remote=false, bool includeSigs=false, bool validate=false ) const = 0; virtual EncryptJob * encryptJob( bool armor=false, bool textmode=false ) const = 0; @@ -107,14 +107,14 @@ namespace Kleo { virtual ImportJob * importJob() const = 0; virtual ExportJob * publicKeyExportJob( bool armor=false ) const = 0; // @param charset the encoding of the passphrase in the exported file - virtual ExportJob * secretKeyExportJob( bool armor=false, const QString& charset = QString::null ) const = 0; + virtual ExportJob * secretKeyExportJob( bool armor=false, const TQString& charset = TQString::null ) const = 0; virtual DownloadJob * downloadJob( bool armor=false ) const = 0; virtual DeleteJob * deleteJob() const = 0; virtual SignEncryptJob * signEncryptJob( bool armor=false, bool textMode=false ) const = 0; virtual DecryptVerifyJob * decryptVerifyJob( bool textmode=false ) const = 0; virtual RefreshKeysJob * refreshKeysJob() const = 0; - virtual SpecialJob * specialJob( const char * type, const QMap<QString,QVariant> & args ) const = 0; + virtual SpecialJob * specialJob( const char * type, const TQMap<TQString,TQVariant> & args ) const = 0; }; } |