diff options
Diffstat (limited to 'kpresenter/KPrSVGPathParser.cpp')
-rw-r--r-- | kpresenter/KPrSVGPathParser.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kpresenter/KPrSVGPathParser.cpp b/kpresenter/KPrSVGPathParser.cpp index e452cdfa..97e8ac8b 100644 --- a/kpresenter/KPrSVGPathParser.cpp +++ b/kpresenter/KPrSVGPathParser.cpp @@ -38,9 +38,9 @@ ObjType KPrSVGPathParser::getType( TQString &d ) { objType = OT_FREEHAND; } - else if ( ( m_pathType & SEEN_TQUADRIC ) && ! ( m_pathType & SEEN_CUBIC ) ) + else if ( ( m_pathType & SEEN_QUADRIC ) && ! ( m_pathType & SEEN_CUBIC ) ) { - objType = OT_TQUADRICBEZIERCURVE; + objType = OT_QUADRICBEZIERCURVE; } else if ( m_pathType & SEEN_CUBIC ) { @@ -119,7 +119,7 @@ void KPrSVGPathParser::svgCurveToCubic( double x1, double y1, double x2, double if ( x1 == x2 && y1 == y2 ) { - m_pathType |= SEEN_TQUADRIC; + m_pathType |= SEEN_QUADRIC; } else { |