diff options
author | Thorsten Behrens <tbehrens@suse.com> | 2012-01-17 16:32:43 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2012-01-18 15:27:54 +0100 |
commit | 13e1fe0561facccc80628c031065ad91adfdeade (patch) | |
tree | 0fe87397f45ea7fe3910810be00a925dd56e22ba /basegfx/inc | |
parent | b13852edb7ab68ba74fb47a38aebbda995323ecf (diff) |
Fix error in handling 'z' for svg:d string parsing
Previously 'z' did not update the current point to the start
point of the subpath, as required by
http://www.w3.org/TR/SVG/paths.html#PathDataClosePathCommand. Fixed
now, and adapted all the unit tests.
Diffstat (limited to 'basegfx/inc')
-rw-r--r-- | basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx b/basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx index 03024414cb0c..37d2cb553814 100644 --- a/basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx +++ b/basegfx/inc/basegfx/polygon/b2dpolypolygontools.hxx @@ -123,8 +123,7 @@ namespace basegfx /** Read poly-polygon from SVG. This function imports a poly-polygon from an SVG-D - attribute. Currently, elliptical arc elements are not yet - supported (and ignored during parsing). + attribute. @param o_rPolyPoly The output poly-polygon |