diff options
Diffstat (limited to 'certmanager/lib/kleo/downloadjob.h')
-rw-r--r-- | certmanager/lib/kleo/downloadjob.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/lib/kleo/downloadjob.h b/certmanager/lib/kleo/downloadjob.h index 006ab8ebd..6fa5a3e4b 100644 --- a/certmanager/lib/kleo/downloadjob.h +++ b/certmanager/lib/kleo/downloadjob.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 download with a call to start(). This call might fail, in which case the DownloadJob instance will have scheduled it's own destruction with a call to - QObject::deleteLater(). + TQObject::deleteLater(). After result() is emitted, the DownloadJob will schedule it's own - destruction by calling QObject::deleteLater(). + destruction by calling TQObject::deleteLater(). */ class DownloadJob : public Job { Q_OBJECT protected: - DownloadJob( QObject * parent, const char * name ); + DownloadJob( TQObject * parent, const char * name ); public: ~DownloadJob(); @@ -72,10 +72,10 @@ namespace Kleo { only empty strings or anything other than fingerprints, the result is undefined. */ - virtual GpgME::Error start( const QStringList & fingerprints ) = 0; + virtual GpgME::Error start( const TQStringList & fingerprints ) = 0; signals: - void result( const GpgME::Error & result, const QByteArray & keyData ); + void result( const GpgME::Error & result, const TQByteArray & keyData ); }; } |