From f008adb5a77e094eaf6abf3fc0f36958e66896a5 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 25 Jun 2011 05:28:35 +0000 Subject: TQt4 port koffice This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpresenter/KPrSVGPathParser.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kpresenter/KPrSVGPathParser.h') 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 -- cgit v1.2.1