summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/jpeglossless/jpegtransform.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/jpeglossless/jpegtransform.h')
-rw-r--r--kipi-plugins/jpeglossless/jpegtransform.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kipi-plugins/jpeglossless/jpegtransform.h b/kipi-plugins/jpeglossless/jpegtransform.h
index 1cf76f2..e04c2a2 100644
--- a/kipi-plugins/jpeglossless/jpegtransform.h
+++ b/kipi-plugins/jpeglossless/jpegtransform.h
@@ -25,9 +25,9 @@
#ifndef JPEGTRANSFORM_H
#define JPEGTRANSFORM_H
-// Qt includes.
+// TQt includes.
-#include <qstring.h>
+#include <tqstring.h>
// LibKExiv2 includes.
@@ -49,7 +49,7 @@ namespace KIPIJPEGLossLessPlugin
cares for both composing (180+90=270) and eliminating (180+180=no action),
as well as the non-commutative nature of the operations (vflip+90 is not 90+vflip)
- All 2D transformations can be described by a 2x3 matrix, see QWMatrix.
+ All 2D transformations can be described by a 2x3 matrix, see TQWMatrix.
All transformations needed here - rotate 90, 180, 270, flipV, flipH -
can be described in a 2x2 matrix with the values 0,1,-1
(because flipping is expressed by changing the sign only,
@@ -121,7 +121,7 @@ protected:
};
-bool transformJPEG(const QString& src, const QString& dest, Matrix &action, QString& err);
+bool transformJPEG(const TQString& src, const TQString& dest, Matrix &action, TQString& err);
void convertTransform(Matrix &action, JXFORM_CODE &flip, JXFORM_CODE &rotate);