diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /certmanager/lib/kleo/exportjob.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'certmanager/lib/kleo/exportjob.h')
-rw-r--r-- | certmanager/lib/kleo/exportjob.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/lib/kleo/exportjob.h b/certmanager/lib/kleo/exportjob.h index d6a0db185..9e84c1351 100644 --- a/certmanager/lib/kleo/exportjob.h +++ b/certmanager/lib/kleo/exportjob.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 export with a call to start(). This call might fail, in which case the ExportJob instance will have scheduled it's own destruction with a call to - QObject::deleteLater(). + TQObject::deleteLater(). After result() is emitted, the ExportJob will schedule it's own - destruction by calling QObject::deleteLater(). + destruction by calling TQObject::deleteLater(). */ class ExportJob : public Job { Q_OBJECT protected: - ExportJob( QObject * parent, const char * name ); + ExportJob( TQObject * parent, const char * name ); public: ~ExportJob(); @@ -71,10 +71,10 @@ namespace Kleo { ignored. If \a patterns is empty or contains only empty strings, all available keys are exported. */ - virtual GpgME::Error start( const QStringList & patterns ) = 0; + virtual GpgME::Error start( const TQStringList & patterns ) = 0; signals: - void result( const GpgME::Error & result, const QByteArray & keyData ); + void result( const GpgME::Error & result, const TQByteArray & keyData ); }; } |