--- SvgExporter.js~ 2011-08-19 15:58:00.000000000 +0200 +++ SvgExporter.js 2011-08-27 11:20:36.530766927 +0200 @@ -276,8 +276,8 @@ for ( var c = 0; c < path.getElementCount(); ++c) { // move to, line to, curve to, curve to, data var type = path.getTypeAt(c); - var x = path.getXAt(c); // data point x - var y = path.getYAt(c); // data point y + var x = this.convert(path.getXAt(c)); // data point x + var y = this.convert(path.getYAt(c)); // data point y if (type == QPainterPath.MoveToElement) { str += "M%1,%2 ".arg(x).arg(y); } else if (type == QPainterPath.LineToElement) {