diff options
author | Armin Le Grand <alg@apache.org> | 2012-01-13 16:29:15 +0000 |
---|---|---|
committer | Armin Le Grand <alg@apache.org> | 2012-01-13 16:29:15 +0000 |
commit | 6ef8422437e82334a44f075cd1e5cb99c51986f3 (patch) | |
tree | 7b26e3648710e1e63fcaa1970a90333e0b1b9c4c /svx | |
parent | 2926a571f7d027d4b01c1fbdfa58de65ca03e2db (diff) |
#118730# Changed SvgClipPathNode to use MaskPrimitive2D for primitive representation instead of TransparencePrimitive2D
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/svdobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx index 15ea175155fa..f2d3861edb98 100644 --- a/svx/source/svdraw/svdobj.cxx +++ b/svx/source/svdraw/svdobj.cxx @@ -1200,8 +1200,8 @@ basegfx::B2DPolyPolygon SdrObject::TakeContour() const // use neutral ViewInformation const drawinglayer::geometry::ViewInformation2D aViewInformation2D; - // create extractor, process and get result - drawinglayer::processor2d::ContourExtractor2D aExtractor(aViewInformation2D); + // create extractor, process and get result (with hairlines as opened polygons) + drawinglayer::processor2d::ContourExtractor2D aExtractor(aViewInformation2D, false); aExtractor.process(xSequence); const basegfx::B2DPolyPolygonVector& rResult(aExtractor.getExtractedContour()); const sal_uInt32 nSize(rResult.size()); |