summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/importjob.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/importjob.h')
-rw-r--r--certmanager/lib/kleo/importjob.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/certmanager/lib/kleo/importjob.h b/certmanager/lib/kleo/importjob.h
index 10aa9038..9c446457 100644
--- a/certmanager/lib/kleo/importjob.h
+++ b/certmanager/lib/kleo/importjob.h
@@ -35,7 +35,7 @@
#include "job.h"
-#include <qcstring.h>
+#include <tqcstring.h>
namespace GpgME {
class Error;
@@ -54,15 +54,15 @@ namespace Kleo {
signals to suitable slots and then start the import with a call
to start(). This call might fail, in which case the ImportJob
instance will have scheduled it's own destruction with a call to
- QObject::deleteLater().
+ TQObject::deleteLater().
After result() is emitted, the ImportJob will schedule it's own
- destruction by calling QObject::deleteLater().
+ destruction by calling TQObject::deleteLater().
*/
class ImportJob : public Job {
Q_OBJECT
protected:
- ImportJob( QObject * parent, const char * name );
+ ImportJob( TQObject * parent, const char * name );
public:
~ImportJob();
@@ -70,9 +70,9 @@ namespace Kleo {
Starts the importing operation. \a keyData contains the data to
import from.
*/
- virtual GpgME::Error start( const QByteArray & keyData ) = 0;
+ virtual GpgME::Error start( const TQByteArray & keyData ) = 0;
- virtual GpgME::ImportResult exec( const QByteArray & keyData ) = 0;
+ virtual GpgME::ImportResult exec( const TQByteArray & keyData ) = 0;
signals:
void result( const GpgME::ImportResult & result );