summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/jpeglossless/actionthread.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/jpeglossless/actionthread.h')
-rw-r--r--kipi-plugins/jpeglossless/actionthread.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kipi-plugins/jpeglossless/actionthread.h b/kipi-plugins/jpeglossless/actionthread.h
index 5f41751..fb81edf 100644
--- a/kipi-plugins/jpeglossless/actionthread.h
+++ b/kipi-plugins/jpeglossless/actionthread.h
@@ -30,11 +30,11 @@
#ifndef ACTIONTHREAD_H
#define ACTIONTHREAD_H
-// Qt includes.
+// TQt includes.
-#include <qstring.h>
-#include <qthread.h>
-#include <qstringlist.h>
+#include <tqstring.h>
+#include <tqthread.h>
+#include <tqstringlist.h>
// KDE includes.
@@ -49,16 +49,16 @@
#include "actions.h"
#include "mtqueue.h"
-class QObject;
+class TQObject;
namespace KIPIJPEGLossLessPlugin
{
-class ActionThread : public QThread
+class ActionThread : public TQThread
{
public:
- ActionThread( KIPI::Interface* interface, QObject *parent);
+ ActionThread( KIPI::Interface* interface, TQObject *tqparent);
~ActionThread();
void rotate(const KURL::List& urlList, RotateAction val);
@@ -74,7 +74,7 @@ private:
struct Task_
{
- QString filePath;
+ TQString filePath;
Action action;
RotateAction rotAction;
FlipAction flipAction;
@@ -82,7 +82,7 @@ private:
typedef struct Task_ Task;
- QObject *m_parent;
+ TQObject *m_parent;
MTQueue<Task> m_taskQueue;