From: johanengelen Date: Fri, 6 Jun 2008 23:18:58 +0000 (+0000) Subject: spdc_flush_white(SPDrawContext *dc, SPCurve *gc) now uses curve->get_pathvector inste... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5dfa6ec5b0b285e11f753eb5b630b09440b150f8;p=inkscape.git spdc_flush_white(SPDrawContext *dc, SPCurve *gc) now uses curve->get_pathvector instead of get_bpath. --- diff --git a/src/draw-context.cpp b/src/draw-context.cpp index 33c3898a7..8858a4560 100644 --- a/src/draw-context.cpp +++ b/src/draw-context.cpp @@ -551,7 +551,7 @@ spdc_flush_white(SPDrawContext *dc, SPCurve *gc) sp_desktop_apply_style_tool(desktop, repr, tool_name(dc), false); } - gchar *str = sp_svg_write_path(SP_CURVE_BPATH(c)); + gchar *str = sp_svg_write_path( c->get_pathvector() ); g_assert( str != NULL ); if (has_lpe) repr->setAttribute("inkscape:original-d", str);