diff options
Diffstat (limited to 'lib/kopainter/svgpathparser.cc')
-rw-r--r-- | lib/kopainter/svgpathparser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kopainter/svgpathparser.cc b/lib/kopainter/svgpathparser.cc index 1bdc3095..9295cdd2 100644 --- a/lib/kopainter/svgpathparser.cc +++ b/lib/kopainter/svgpathparser.cc @@ -93,7 +93,7 @@ SVGPathParser::parseSVG( const TQString &s, bool process ) if( !s.isEmpty() ) { TQString d = s; - d = d.tqreplace( ',', ' ' ); + d = d.replace( ',', ' ' ); d = d.simplifyWhiteSpace(); const char *ptr = d.latin1(); |