summaryrefslogtreecommitdiffstats
path: root/src/2geom/cairo-path-sink.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2015-05-22 08:23:27 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2015-05-22 08:23:27 +0000
commit25fa09178b7d0d0befa708e93ea5316ef381caa0 (patch)
tree550b4d0d66d0d234b3f49e868cb747987dcc6bf8 /src/2geom/cairo-path-sink.cpp
parentMerge from trunk (diff)
downloadinkscape-25fa09178b7d0d0befa708e93ea5316ef381caa0.tar.gz
inkscape-25fa09178b7d0d0befa708e93ea5316ef381caa0.zip
Update to 2Geom revision 2396
(bzr r14059.2.16)
Diffstat (limited to 'src/2geom/cairo-path-sink.cpp')
-rw-r--r--src/2geom/cairo-path-sink.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/cairo-path-sink.cpp b/src/2geom/cairo-path-sink.cpp
index f327bf04d..244a08ba4 100644
--- a/src/2geom/cairo-path-sink.cpp
+++ b/src/2geom/cairo-path-sink.cpp
@@ -31,7 +31,7 @@
#include <cairo.h>
#include <2geom/cairo-path-sink.h>
-#include <2geom/svg-elliptical-arc.h>
+#include <2geom/elliptical-arc.h>
namespace Geom {
@@ -71,7 +71,7 @@ void CairoPathSink::quadTo(Point const &p1, Point const &p2)
void CairoPathSink::arcTo(double rx, double ry, double angle,
bool large_arc, bool sweep, Point const &p)
{
- SVGEllipticalArc arc(_current_point, rx, ry, angle, large_arc, sweep, p);
+ EllipticalArc arc(_current_point, rx, ry, angle, large_arc, sweep, p);
// Cairo only does circular arcs.
// To do elliptical arcs, we must use a temporary transform.
Affine uct = arc.unitCircleTransform();