summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrSVGPathParser.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpresenter/KPrSVGPathParser.h')
-rw-r--r--kpresenter/KPrSVGPathParser.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/kpresenter/KPrSVGPathParser.h b/kpresenter/KPrSVGPathParser.h
index 064616cd..523e4695 100644
--- a/kpresenter/KPrSVGPathParser.h
+++ b/kpresenter/KPrSVGPathParser.h
@@ -40,12 +40,12 @@ public:
* @return The object type. This can be:
* OT_FREEHAND
* OT_CLOSED_LINE
- * OT_QUADRICBEZIERCURVE
+ * OT_TQUADRICBEZIERCURVE
* OT_CUBICBEZIERCURVE
* or
* OT_UNDEFINED if path is not supported
*/
- ObjType getType( QString &d );
+ ObjType getType( TQString &d );
/**
* @brief Get the points of the path
@@ -55,7 +55,7 @@ public:
*
* @return points of the path
*/
- KoPointArray getPoints( QString &d, bool convert2lines = false );
+ KoPointArray getPoints( TQString &d, bool convert2lines = false );
protected:
virtual void svgMoveTo( double x1, double y1, bool abs = true );
@@ -71,7 +71,7 @@ private:
SEEN_MOVE = 1,
SEEN_LINE = 2,
SEEN_CUBIC = 4,
- SEEN_QUADRIC = 8,
+ SEEN_TQUADRIC = 8,
SEEN_CLOSE = 16,
NO_BEZIER = 32,
UNSUPPORTED = 64