summaryrefslogtreecommitdiffstats
path: root/krita/sdk/kis_progress_subject.h
diff options
context:
space:
mode:
Diffstat (limited to 'krita/sdk/kis_progress_subject.h')
-rw-r--r--krita/sdk/kis_progress_subject.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/krita/sdk/kis_progress_subject.h b/krita/sdk/kis_progress_subject.h
index d936c7b78..59a8acb1e 100644
--- a/krita/sdk/kis_progress_subject.h
+++ b/krita/sdk/kis_progress_subject.h
@@ -19,15 +19,16 @@
#ifndef KIS_PROGRESS_SUBJECT_H_
#define KIS_PROGRESS_SUBJECT_H_
-#include <qobject.h>
+#include <tqobject.h>
#include <koffice_export.h>
-class KRITAUI_EXPORT KisProgressSubject : public QObject {
+class KRITAUI_EXPORT KisProgressSubject : public TQObject {
Q_OBJECT
+ TQ_OBJECT
protected:
KisProgressSubject() {};
- KisProgressSubject(QObject * parent, const char * name) : QObject(parent, name) {};
+ KisProgressSubject(TQObject * tqparent, const char * name) : TQObject(tqparent, name) {};
virtual ~KisProgressSubject();
public:
@@ -35,7 +36,7 @@ public:
signals:
void notifyProgress(int percent);
- void notifyProgressStage(const QString& stage, int percent);
+ void notifyProgressStage(const TQString& stage, int percent);
void notifyProgressDone();
void notifyProgressError();
};