diff options
Diffstat (limited to 'certmanager/lib/kleo/decryptverifyjob.h')
-rw-r--r-- | certmanager/lib/kleo/decryptverifyjob.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/certmanager/lib/kleo/decryptverifyjob.h b/certmanager/lib/kleo/decryptverifyjob.h index f7cdb81a1..e220670c6 100644 --- a/certmanager/lib/kleo/decryptverifyjob.h +++ b/certmanager/lib/kleo/decryptverifyjob.h @@ -35,7 +35,7 @@ #include "job.h" -#include <qcstring.h> +#include <tqcstring.h> #include <utility> @@ -57,15 +57,15 @@ namespace Kleo { signals to suitable slots and then start the operation with a call to start(). This call might fail, in which case the DecryptVerifyJob instance will have scheduled it's own destruction with - a call to QObject::deleteLater(). + a call to TQObject::deleteLater(). After result() is emitted, the DecryptVerifyJob will schedule it's own - destruction by calling QObject::deleteLater(). + destruction by calling TQObject::deleteLater(). */ class DecryptVerifyJob : public Job { Q_OBJECT protected: - DecryptVerifyJob( QObject * parent, const char * name ); + DecryptVerifyJob( TQObject * parent, const char * name ); public: ~DecryptVerifyJob(); @@ -73,16 +73,16 @@ namespace Kleo { Starts the combined decryption and verification operation. \a cipherText is the data to decrypt and later verify. */ - virtual GpgME::Error start( const QByteArray & cipherText ) = 0; + virtual GpgME::Error start( const TQByteArray & cipherText ) = 0; /** Synchronous equivalent of start() */ virtual std::pair<GpgME::DecryptionResult,GpgME::VerificationResult> - exec( const QByteArray & cipherText, QByteArray & plainText ) = 0; + exec( const TQByteArray & cipherText, TQByteArray & plainText ) = 0; signals: void result( const GpgME::DecryptionResult & decryptionresult, const GpgME::VerificationResult & verificationresult, - const QByteArray & plainText ); + const TQByteArray & plainText ); }; } |