summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/decryptjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/decryptjob.h')
-rw-r--r--certmanager/lib/kleo/decryptjob.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/certmanager/lib/kleo/decryptjob.h b/certmanager/lib/kleo/decryptjob.h
index e882152a..8351a1ff 100644
--- a/certmanager/lib/kleo/decryptjob.h
+++ b/certmanager/lib/kleo/decryptjob.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 decryption with a
call to start(). This call might fail, in which case the
DecryptJob instance will have scheduled it's own destruction with
- a call to QObject::deleteLater().
+ a call to TQObject::deleteLater().
After result() is emitted, the DecryptJob will schedule it's own
- destruction by calling QObject::deleteLater().
+ destruction by calling TQObject::deleteLater().
*/
class DecryptJob : public Job {
Q_OBJECT
protected:
- DecryptJob( QObject * parent, const char * name );
+ DecryptJob( TQObject * parent, const char * name );
public:
~DecryptJob();
@@ -70,13 +70,13 @@ namespace Kleo {
Starts the decryption operation. \a cipherText is the data to
decrypt.
*/
- virtual GpgME::Error start( const QByteArray & cipherText ) = 0;
+ virtual GpgME::Error start( const TQByteArray & cipherText ) = 0;
- virtual GpgME::DecryptionResult exec( const QByteArray & cipherText,
- QByteArray & plainText ) = 0;
+ virtual GpgME::DecryptionResult exec( const TQByteArray & cipherText,
+ TQByteArray & plainText ) = 0;
signals:
- void result( const GpgME::DecryptionResult & result, const QByteArray & plainText );
+ void result( const GpgME::DecryptionResult & result, const TQByteArray & plainText );
};
}