From 936fc2adfcf83579ef09e66eb22db0dd7724b0be Mon Sep 17 00:00:00 2001 From: "Johan B. C. Engelen" Date: Sat, 2 Aug 2008 22:31:05 +0000 Subject: fix error in nodepath (bzr r6533) --- src/nodepath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nodepath.cpp b/src/nodepath.cpp index ba75c94dc..e2cf1a78d 100644 --- a/src/nodepath.cpp +++ b/src/nodepath.cpp @@ -528,7 +528,7 @@ static void subpaths_from_pathvector(Inkscape::NodePath::Path *np, Geom::PathVec NR::Point ppos = from_2geom(pit->initialPoint()) * np->i2d; NRPathcode pcode = NR_MOVETO; - for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_open(); ++cit) { + for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_closed(); ++cit) { add_curve_to_subpath(np, sp, *cit, t, i, ppos, pcode); } -- cgit v1.2.3