summaryrefslogtreecommitdiffstats
path: root/src/nodepath.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-06-26 22:57:43 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-06-26 22:57:43 +0000
commitba7148ac81268798ee337c661bca7a9168c19b5a (patch)
tree7a03c30c76ca169ae8be32cae5a039280f4b9e3f /src/nodepath.cpp
parentuse CairoRenderContext::renderPathVector (diff)
downloadinkscape-ba7148ac81268798ee337c661bca7a9168c19b5a.tar.gz
inkscape-ba7148ac81268798ee337c661bca7a9168c19b5a.zip
don't use splivarot to get livarot path, use livarot's LoadPathVector method instead
(bzr r6076)
Diffstat (limited to 'src/nodepath.cpp')
-rw-r--r--src/nodepath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nodepath.cpp b/src/nodepath.cpp
index f4be1c30c..b712539ab 100644
--- a/src/nodepath.cpp
+++ b/src/nodepath.cpp
@@ -342,7 +342,7 @@ void sp_nodepath_ensure_livarot_path(Inkscape::NodePath::Path *np)
if (np && np->livarot_path == NULL) {
SPCurve *curve = create_curve(np);
np->livarot_path = new Path;
- np->livarot_path->LoadPathVector(curve->get_pathvector(), Geom::Matrix(), false);
+ np->livarot_path->LoadPathVector(curve->get_pathvector());
if (np->livarot_path)
np->livarot_path->ConvertWithBackData(0.01);