diff options
Diffstat (limited to 'certmanager/lib/kleo/refreshkeysjob.h')
-rw-r--r-- | certmanager/lib/kleo/refreshkeysjob.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/certmanager/lib/kleo/refreshkeysjob.h b/certmanager/lib/kleo/refreshkeysjob.h index dcf9cd516..5ace60b6e 100644 --- a/certmanager/lib/kleo/refreshkeysjob.h +++ b/certmanager/lib/kleo/refreshkeysjob.h @@ -54,15 +54,15 @@ namespace Kleo { signals to suitable slots and then start the key refresh with a call to start(). This call might fail, in which case the RefreshKeysJob instance will have scheduled its own destruction - with a call to QObject::deleteLater(). + with a call to TQObject::deleteLater(). After result() is emitted, the KeyListJob will schedule it's own - destruction by calling QObject::deleteLater(). + destruction by calling TQObject::deleteLater(). */ class RefreshKeysJob : public Job { Q_OBJECT protected: - RefreshKeysJob( QObject * parent, const char * name ); + RefreshKeysJob( TQObject * parent, const char * name ); public: ~RefreshKeysJob(); @@ -79,7 +79,7 @@ namespace Kleo { also available are returned. Use this if you need to select a key for signing. */ - virtual GpgME::Error start( const QStringList & patterns ) = 0; + virtual GpgME::Error start( const TQStringList & patterns ) = 0; signals: void result( const GpgME::Error & error ); |