summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/signjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/signjob.h')
-rw-r--r--certmanager/lib/kleo/signjob.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/certmanager/lib/kleo/signjob.h b/certmanager/lib/kleo/signjob.h
index 17ea3d94..677aedcf 100644
--- a/certmanager/lib/kleo/signjob.h
+++ b/certmanager/lib/kleo/signjob.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>
@@ -57,15 +57,15 @@ namespace Kleo {
suitable slots and then start the signing with a call to
start(). This call might fail, in which case the SignJob instance
will have scheduled it's own destruction with a call to
- QObject::deleteLater().
+ TQObject::deleteLater().
After result() is emitted, the SignJob will schedule it's own
- destruction by calling QObject::deleteLater().
+ destruction by calling TQObject::deleteLater().
*/
class SignJob : public Job {
Q_OBJECT
protected:
- SignJob( QObject * parent, const char * name );
+ SignJob( TQObject * parent, const char * name );
public:
~SignJob();
@@ -74,15 +74,15 @@ namespace Kleo {
sign \a plainText with. Empty (null) keys are ignored.
*/
virtual GpgME::Error start( const std::vector<GpgME::Key> & signers,
- const QByteArray & plainText,
+ const TQByteArray & plainText,
GpgME::Context::SignatureMode mode ) = 0;
virtual GpgME::SigningResult exec( const std::vector<GpgME::Key> & signers,
- const QByteArray & plainText,
+ const TQByteArray & plainText,
GpgME::Context::SignatureMode mode,
- QByteArray & signature ) = 0;
+ TQByteArray & signature ) = 0;
signals:
- void result( const GpgME::SigningResult & result, const QByteArray & signature );
+ void result( const GpgME::SigningResult & result, const TQByteArray & signature );
};
}