summaryrefslogtreecommitdiffstats
path: root/src/2geom/svg-path-parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/svg-path-parser.cpp')
-rw-r--r--src/2geom/svg-path-parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/svg-path-parser.cpp b/src/2geom/svg-path-parser.cpp
index 6ee55171e..b6e6da869 100644
--- a/src/2geom/svg-path-parser.cpp
+++ b/src/2geom/svg-path-parser.cpp
@@ -1209,7 +1209,7 @@ void SVGPathParser::_arcTo(Coord rx, Coord ry, Coord angle,
return; // ignore invalid (ambiguous) arc segments where start and end point are the same (per SVG spec)
}
- _pushCurve(new SVGEllipticalArc(_current, rx, ry, angle, large_arc, sweep, p));
+ _pushCurve(new EllipticalArc(_current, rx, ry, angle, large_arc, sweep, p));
_quad_tangent = _cubic_tangent = _current = p;
}