summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/job.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/job.cpp')
-rw-r--r--certmanager/lib/kleo/job.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/certmanager/lib/kleo/job.cpp b/certmanager/lib/kleo/job.cpp
index 77881d73..c5371b64 100644
--- a/certmanager/lib/kleo/job.cpp
+++ b/certmanager/lib/kleo/job.cpp
@@ -52,31 +52,31 @@
#include "refreshkeysjob.h"
#include "specialjob.h"
-#include <qapplication.h>
+#include <tqapplication.h>
#include <kdebug.h>
-Kleo::Job::Job( QObject * parent, const char * name )
- : QObject( parent, name )
+Kleo::Job::Job( TQObject * parent, const char * name )
+ : TQObject( parent, name )
{
if ( qApp )
- connect( qApp, SIGNAL(aboutToQuit()), SLOT(slotCancel()) );
+ connect( qApp, TQT_SIGNAL(aboutToQuit()), TQT_SLOT(slotCancel()) );
}
Kleo::Job::~Job() {
}
-void Kleo::Job::showErrorDialog( QWidget *, const QString & ) const {
+void Kleo::Job::showErrorDialog( TQWidget *, const TQString & ) const {
kdDebug() << "Kleo::Job::showErrorDialog() should be reimplemented in Kleo::Job subclasses!" << endl;
}
-QString Kleo::Job::auditLogAsHtml() const {
+TQString Kleo::Job::auditLogAsHtml() const {
kdDebug() << "Kleo::Job::auditLogAsHtml() should be reimplemented in Kleo::Job subclasses!" << endl;
- return QString();
+ return TQString();
}
#define make_job_subclass(x) \
- Kleo::x::x( QObject * parent, const char * name ) : Job( parent, name ) {} \
+ Kleo::x::x( TQObject * parent, const char * name ) : Job( parent, name ) {} \
Kleo::x::~x() {}
make_job_subclass(KeyListJob)