diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2012-01-17 22:30:48 +0000 |
|---|---|---|
| committer | Johan Engelen <goejendaagh@zonnet.nl> | 2012-01-17 22:30:48 +0000 |
| commit | d97dcb5d03fa3e063c597788fa7f2c766ae5916e (patch) | |
| tree | 471f294f631eca82850a50a6f281b71cc26f195b /src/sp-polygon.cpp | |
| parent | documentation (diff) | |
| download | inkscape-d97dcb5d03fa3e063c597788fa7f2c766ae5916e.tar.gz inkscape-d97dcb5d03fa3e063c597788fa7f2c766ae5916e.zip | |
add underscores to some member variables.
add some const stuff
(bzr r10900)
Diffstat (limited to 'src/sp-polygon.cpp')
| -rw-r--r-- | src/sp-polygon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-polygon.cpp b/src/sp-polygon.cpp index 1067da72e..eee8d50bc 100644 --- a/src/sp-polygon.cpp +++ b/src/sp-polygon.cpp @@ -122,7 +122,7 @@ static Inkscape::XML::Node *sp_polygon_write(SPObject *object, Inkscape::XML::Do } /* We can safely write points here, because all subclasses require it too (Lauris) */ - gchar *str = sp_svg_write_polygon(shape->curve->get_pathvector()); + gchar *str = sp_svg_write_polygon(shape->_curve->get_pathvector()); repr->setAttribute("points", str); g_free(str); |
