From: buliabyak Date: Fri, 1 Aug 2008 02:23:25 +0000 (+0000) Subject: fix error in creating nodepath from pathvector X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cc431afaac31e778d9d500549f5b2f98e13c19a0;p=inkscape.git fix error in creating nodepath from pathvector --- diff --git a/src/nodepath.cpp b/src/nodepath.cpp index ffe2a6b8d..337731e57 100644 --- a/src/nodepath.cpp +++ b/src/nodepath.cpp @@ -553,7 +553,7 @@ static void add_curve_to_subpath(Inkscape::NodePath::Path *np, Inkscape::NodePat dynamic_cast(&c) ) { NR::Point pos = from_2geom(c.initialPoint()) * np->i2d; - sp_nodepath_node_new(sp, NULL, t[i++], pcode, &ppos, &pos, &pos); + sp_nodepath_node_new(sp, NULL, t[i++], pcode, &pos, &pos, &pos); ppos = from_2geom(c.finalPoint()); pcode = NR_LINETO; }