diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /certmanager/lib/kleo/verifyopaquejob.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'certmanager/lib/kleo/verifyopaquejob.h')
-rw-r--r-- | certmanager/lib/kleo/verifyopaquejob.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/certmanager/lib/kleo/verifyopaquejob.h b/certmanager/lib/kleo/verifyopaquejob.h index b38b18de1..58c452b7c 100644 --- a/certmanager/lib/kleo/verifyopaquejob.h +++ b/certmanager/lib/kleo/verifyopaquejob.h @@ -35,7 +35,7 @@ #include "job.h" -#include <qcstring.h> +#include <tqcstring.h> namespace GpgME { class Error; @@ -54,15 +54,15 @@ namespace Kleo { signals to suitable slots and then start the verification with a call to start(). This call might fail, in which case the VerifyOpaqueJob instance will have scheduled it's own - destruction with a call to QObject::deleteLater(). + destruction with a call to TQObject::deleteLater(). After result() is emitted, the VerifyOpaqueJob will schedule - it's own destruction by calling QObject::deleteLater(). + it's own destruction by calling TQObject::deleteLater(). */ class VerifyOpaqueJob : public Job { Q_OBJECT protected: - VerifyOpaqueJob( QObject * parent, const char * name ); + VerifyOpaqueJob( TQObject * parent, const char * name ); public: ~VerifyOpaqueJob(); @@ -71,13 +71,13 @@ namespace Kleo { signature data, while \a signedData contains the data over which the signature was made. */ - virtual GpgME::Error start( const QByteArray & signedData ) = 0; + virtual GpgME::Error start( const TQByteArray & signedData ) = 0; /** Synchronous version of @ref start */ - virtual GpgME::VerificationResult exec( const QByteArray & signedData, QByteArray & plainText ) = 0; + virtual GpgME::VerificationResult exec( const TQByteArray & signedData, TQByteArray & plainText ) = 0; signals: - void result( const GpgME::VerificationResult & result, const QByteArray & plainText ); + void result( const GpgME::VerificationResult & result, const TQByteArray & plainText ); }; } |