diff options
Diffstat (limited to 'certmanager/lib/kleo/signencryptjob.h')
-rw-r--r-- | certmanager/lib/kleo/signencryptjob.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/certmanager/lib/kleo/signencryptjob.h b/certmanager/lib/kleo/signencryptjob.h index 42d3a179f..5e12723ef 100644 --- a/certmanager/lib/kleo/signencryptjob.h +++ b/certmanager/lib/kleo/signencryptjob.h @@ -36,7 +36,7 @@ #include <gpgmepp/context.h> // for Context::SignatureMode (or should // we roll our own enum here?) #include "job.h" -#include <qcstring.h> +#include <tqcstring.h> #include <vector> #include <utility> @@ -59,15 +59,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 SignEncryptJob instance will have scheduled it's own destruction - with a call to QObject::deleteLater(). + with a call to TQObject::deleteLater(). After result() is emitted, the SignEncryptJob will schedule it's - own destruction by calling QObject::deleteLater(). + own destruction by calling TQObject::deleteLater(). */ class SignEncryptJob : public Job { Q_OBJECT protected: - SignEncryptJob( QObject * parent, const char * name ); + SignEncryptJob( TQObject * parent, const char * name ); public: ~SignEncryptJob(); @@ -83,19 +83,19 @@ namespace Kleo { */ virtual GpgME::Error start( const std::vector<GpgME::Key> & signers, const std::vector<GpgME::Key> & recipients, - const QByteArray & plainText, + const TQByteArray & plainText, bool alwaysTrust=false ) = 0; virtual std::pair<GpgME::SigningResult,GpgME::EncryptionResult> exec( const std::vector<GpgME::Key> & signers, const std::vector<GpgME::Key> & recipients, - const QByteArray & plainText, - bool alwaysTrust, QByteArray & cipherText ) = 0; + const TQByteArray & plainText, + bool alwaysTrust, TQByteArray & cipherText ) = 0; signals: void result( const GpgME::SigningResult & signingresult, const GpgME::EncryptionResult & encryptionresult, - const QByteArray & cipherText ); + const TQByteArray & cipherText ); }; } |