summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrSVGPathParser.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-13 13:15:14 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-13 13:15:14 -0600
commit735d75d6ce19269dc5faa00abc8f88ff30ce2f23 (patch)
tree4e85ad9cc0479892232125234c6b71c4f17ac611 /kpresenter/KPrSVGPathParser.h
parentb180811d9a814c638032f77aaf02e84a3126328c (diff)
downloadkoffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.tar.gz
koffice-735d75d6ce19269dc5faa00abc8f88ff30ce2f23.zip
Fix inadvertent TQt string conversions
This closes Bug 782
Diffstat (limited to 'kpresenter/KPrSVGPathParser.h')
-rw-r--r--kpresenter/KPrSVGPathParser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kpresenter/KPrSVGPathParser.h b/kpresenter/KPrSVGPathParser.h
index 523e4695..bd7180f9 100644
--- a/kpresenter/KPrSVGPathParser.h
+++ b/kpresenter/KPrSVGPathParser.h
@@ -40,7 +40,7 @@ public:
* @return The object type. This can be:
* OT_FREEHAND
* OT_CLOSED_LINE
- * OT_TQUADRICBEZIERCURVE
+ * OT_QUADRICBEZIERCURVE
* OT_CUBICBEZIERCURVE
* or
* OT_UNDEFINED if path is not supported
@@ -71,7 +71,7 @@ private:
SEEN_MOVE = 1,
SEEN_LINE = 2,
SEEN_CUBIC = 4,
- SEEN_TQUADRIC = 8,
+ SEEN_QUADRIC = 8,
SEEN_CLOSE = 16,
NO_BEZIER = 32,
UNSUPPORTED = 64