diff options
Diffstat (limited to 'ksvg/impl/svgpathparser.cc')
-rw-r--r-- | ksvg/impl/svgpathparser.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ksvg/impl/svgpathparser.cc b/ksvg/impl/svgpathparser.cc index 0f7521e0..590ac2ba 100644 --- a/ksvg/impl/svgpathparser.cc +++ b/ksvg/impl/svgpathparser.cc @@ -18,7 +18,7 @@ */ #include "svgpathparser.h" -#include <qstring.h> +#include <tqstring.h> #include <math.h> // parses the number into parameter number @@ -95,11 +95,11 @@ SVGPathParser::getCoord( const char *ptr, double &number ) } void -SVGPathParser::parseSVG( const QString &s, bool process ) +SVGPathParser::parseSVG( const TQString &s, bool process ) { if(!s.isEmpty()) { - QString d = s; + TQString d = s; d = d.replace(',', ' '); d = d.simplifyWhiteSpace(); const char *ptr = d.latin1(); |