diff options
Diffstat (limited to 'certmanager/lib/kleo/keygenerationjob.h')
-rw-r--r-- | certmanager/lib/kleo/keygenerationjob.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/lib/kleo/keygenerationjob.h b/certmanager/lib/kleo/keygenerationjob.h index f78152c5c..384d43065 100644 --- a/certmanager/lib/kleo/keygenerationjob.h +++ b/certmanager/lib/kleo/keygenerationjob.h @@ -35,7 +35,7 @@ #include "job.h" -#include <qcstring.h> +#include <tqcstring.h> namespace GpgME { class Error; @@ -53,15 +53,15 @@ namespace Kleo { signals to suitable slots and then start the key generation with a call to start(). This call might fail, in which case the KeyGenerationJob 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 KeyGenerationJob will schedule it's own - destruction by calling QObject::deleteLater(). + destruction by calling TQObject::deleteLater(). */ class KeyGenerationJob : public Job { Q_OBJECT protected: - KeyGenerationJob( QObject * parent, const char * name ); + KeyGenerationJob( TQObject * parent, const char * name ); public: ~KeyGenerationJob(); @@ -70,10 +70,10 @@ namespace Kleo { backend-specific string containing the paramaters of the key to create (length, capabilities, etc). */ - virtual GpgME::Error start( const QString & parameters ) = 0; + virtual GpgME::Error start( const TQString & parameters ) = 0; signals: - void result( const GpgME::KeyGenerationResult & result, const QByteArray & pubKeyData ); + void result( const GpgME::KeyGenerationResult & result, const TQByteArray & pubKeyData ); }; } |