diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-06-06 23:13:19 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-06-06 23:13:19 +0000 |
| commit | 52315378adfd0a5aa882899791ad359e475e151a (patch) | |
| tree | 9ecde3756efe9219faa4c2057a416372c90a8521 /src/connector-context.cpp | |
| parent | add comments to SPCurve about 2geomify status of functions (diff) | |
| download | inkscape-52315378adfd0a5aa882899791ad359e475e151a.tar.gz inkscape-52315378adfd0a5aa882899791ad359e475e151a.zip | |
spcc_flush_white(SPConnectorContext *cc, SPCurve *gc) now uses curve->get_pathvector instead of get_bpath.
(bzr r5838)
Diffstat (limited to 'src/connector-context.cpp')
| -rw-r--r-- | src/connector-context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
