summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/kleo/job.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/kleo/job.h')
-rw-r--r--certmanager/lib/kleo/job.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/certmanager/lib/kleo/job.h b/certmanager/lib/kleo/job.h
index ae65008b..57d0592d 100644
--- a/certmanager/lib/kleo/job.h
+++ b/certmanager/lib/kleo/job.h
@@ -33,8 +33,8 @@
#ifndef __KLEO_JOB_H__
#define __KLEO_JOB_H__
-#include <qobject.h>
-#include <qstring.h>
+#include <tqobject.h>
+#include <tqstring.h>
class QWidget;
@@ -57,22 +57,22 @@ namespace Kleo {
signal of subclasses will still be emitted, though, and will
carry the information that the operation was canceled.
*/
- class Job : public QObject {
+ class Job : public TQObject {
Q_OBJECT
protected:
- Job( QObject * parent, const char * name );
+ Job( TQObject * parent, const char * name );
public:
~Job();
- virtual void showErrorDialog( QWidget * parent=0, const QString & caption=QString::null ) const;
+ virtual void showErrorDialog( TQWidget * parent=0, const TQString & caption=TQString::null ) const;
- virtual QString auditLogAsHtml() const;
+ virtual TQString auditLogAsHtml() const;
public slots:
virtual void slotCancel() = 0;
signals:
- void progress( const QString & what, int current, int total );
+ void progress( const TQString & what, int current, int total );
void done();
};