summaryrefslogtreecommitdiffstats
path: root/src/2geom/svg-path.cpp
diff options
context:
space:
mode:
authormcecchetti <mcecchetti@users.sourceforge.net>2008-05-20 22:29:23 +0000
committermcecchetti <mcecchetti@users.sourceforge.net>2008-05-20 22:29:23 +0000
commit3cd345ae277f34e13420e4f7849f4e030b2437d6 (patch)
tree57c75c18d29f90526d9ce69e9aa72095ca3261bb /src/2geom/svg-path.cpp
parentFix snapping for constrained translation in the selector tool (diff)
downloadinkscape-3cd345ae277f34e13420e4f7849f4e030b2437d6.tar.gz
inkscape-3cd345ae277f34e13420e4f7849f4e030b2437d6.zip
synchronization with 2geom library
(bzr r5723)
Diffstat (limited to 'src/2geom/svg-path.cpp')
-rw-r--r--src/2geom/svg-path.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/svg-path.cpp b/src/2geom/svg-path.cpp
index c09e5c929..2c275cb4c 100644
--- a/src/2geom/svg-path.cpp
+++ b/src/2geom/svg-path.cpp
@@ -51,7 +51,7 @@ void output(QuadraticBezier const &curve, SVGPathSink &sink) {
sink.quadTo(curve[1], curve[2]);
}
-void output(SVGEllipticalArc const &/*curve*/, SVGPathSink &/*sink*/) {
+void output(EllipticalArc const &/*curve*/, SVGPathSink &/*sink*/) {
// FIXME
THROW_NOTIMPLEMENTED();
}
@@ -75,7 +75,7 @@ void output_svg_path(Path &path, SVGPathSink &sink) {
output_as<LineSegment>(*iter, sink) ||
output_as<CubicBezier>(*iter, sink) ||
output_as<QuadraticBezier>(*iter, sink) ||
- output_as<SVGEllipticalArc>(*iter, sink) ||
+ output_as<EllipticalArc>(*iter, sink) ||
output_as<Curve>(*iter, sink);
}