diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-06-26 22:57:43 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-06-26 22:57:43 +0000 |
| commit | ba7148ac81268798ee337c661bca7a9168c19b5a (patch) | |
| tree | 7a03c30c76ca169ae8be32cae5a039280f4b9e3f /src/nodepath.cpp | |
| parent | use CairoRenderContext::renderPathVector (diff) | |
| download | inkscape-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.cpp | 2 |
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); |
