From: johanengelen Date: Fri, 6 Jun 2008 23:13:19 +0000 (+0000) Subject: spcc_flush_white(SPConnectorContext *cc, SPCurve *gc) now uses curve->get_pathvector... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=522a97673c97774f67ef81dcd4242e1433506202;p=inkscape.git spcc_flush_white(SPConnectorContext *cc, SPCurve *gc) now uses curve->get_pathvector instead of get_bpath. --- diff --git a/src/connector-context.cpp b/src/connector-context.cpp index 028467b44..99eb664c0 100644 --- a/src/connector-context.cpp +++ b/src/connector-context.cpp @@ -921,7 +921,7 @@ spcc_flush_white(SPConnectorContext *cc, SPCurve *gc) /* Set style */ sp_desktop_apply_style_tool(desktop, repr, "tools.connector", false); - gchar *str = sp_svg_write_path(SP_CURVE_BPATH(c)); + gchar *str = sp_svg_write_path( c->get_pathvector() ); g_assert( str != NULL ); repr->setAttribute("d", str); g_free(str);