diff options
Diffstat (limited to 'certmanager/lib/kleo/verifydetachedjob.h')
-rw-r--r-- | certmanager/lib/kleo/verifydetachedjob.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/certmanager/lib/kleo/verifydetachedjob.h b/certmanager/lib/kleo/verifydetachedjob.h index f50fda546..58ff64732 100644 --- a/certmanager/lib/kleo/verifydetachedjob.h +++ b/certmanager/lib/kleo/verifydetachedjob.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 VerifyDetachedJob 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 VerifyDetachedJob will schedule - it's own destruction by calling QObject::deleteLater(). + it's own destruction by calling TQObject::deleteLater(). */ class VerifyDetachedJob : public Job { Q_OBJECT protected: - VerifyDetachedJob( QObject * parent, const char * name ); + VerifyDetachedJob( TQObject * parent, const char * name ); public: ~VerifyDetachedJob(); @@ -71,11 +71,11 @@ namespace Kleo { signature data, while \a signedData contains the data over which the signature was made. */ - virtual GpgME::Error start( const QByteArray & signature, - const QByteArray & signedData ) = 0; + virtual GpgME::Error start( const TQByteArray & signature, + const TQByteArray & signedData ) = 0; - virtual GpgME::VerificationResult exec( const QByteArray & signature, - const QByteArray & signedData ) = 0; + virtual GpgME::VerificationResult exec( const TQByteArray & signature, + const TQByteArray & signedData ) = 0; signals: void result( const GpgME::VerificationResult & result ); |