summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/exportjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/exportjob.h')
-rw-r--r--certmanager/lib/kleo/exportjob.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/lib/kleo/exportjob.h b/certmanager/lib/kleo/exportjob.h
index d6a0db18..9e84c135 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 );
};
}