summaryrefslogtreecommitdiff
path: root/canvas
diff options
context:
space:
mode:
authorArmin Le Grand <alg@apache.org>2013-10-29 14:11:45 +0000
committerArmin Le Grand <alg@apache.org>2013-10-29 14:11:45 +0000
commitf15874d8f976f3874bdbcb53429eeefa65c28841 (patch)
treef0e65216e58b2f8dee632209606fe75cfacfdc07 /canvas
parent697d89b1dda760a39cd8e7e28f386dbec1aaff61 (diff)
i123433 Detect pseudo-vertices at svg import, unify svg:d handling, correct svg:d import for relative sub-polygons in svg import; changed default for moveto writes for svg:d in ODF to absolute
Notes
Diffstat (limited to 'canvas')
-rw-r--r--canvas/source/tools/surfaceproxy.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/tools/surfaceproxy.cxx b/canvas/source/tools/surfaceproxy.cxx
index 248bd2cbcf02..1f0fc27f5687 100644
--- a/canvas/source/tools/surfaceproxy.cxx
+++ b/canvas/source/tools/surfaceproxy.cxx
@@ -156,11 +156,11 @@ namespace canvas
OSL_TRACE( "Original clip polygon: %s\n"
"Triangulated polygon: %s\n",
rtl::OUStringToOString(
- basegfx::tools::exportToSvgD( rClipPoly ),
+ basegfx::tools::exportToSvgD( rClipPoly, true, true, false ),
RTL_TEXTENCODING_ASCII_US).getStr(),
rtl::OUStringToOString(
basegfx::tools::exportToSvgD(
- basegfx::B2DPolyPolygon(rTriangulatedPolygon) ),
+ basegfx::B2DPolyPolygon(rTriangulatedPolygon), true, true, false ),
RTL_TEXTENCODING_ASCII_US).getStr() );
#endif