diff options
Diffstat (limited to 'lib/kopainter/svgpathparser.cc')
-rw-r--r-- | lib/kopainter/svgpathparser.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/kopainter/svgpathparser.cc b/lib/kopainter/svgpathparser.cc index 454c921b..1bdc3095 100644 --- a/lib/kopainter/svgpathparser.cc +++ b/lib/kopainter/svgpathparser.cc @@ -18,7 +18,7 @@ */ #include "svgpathparser.h" -#include <qstring.h> +#include <tqstring.h> #include <math.h> #include <kdebug.h> @@ -88,12 +88,12 @@ 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; - d = d.replace( ',', ' ' ); + TQString d = s; + d = d.tqreplace( ',', ' ' ); d = d.simplifyWhiteSpace(); const char *ptr = d.latin1(); |