diff options
Diffstat (limited to 'basegfx/test/clipstate.cxx')
-rw-r--r-- | basegfx/test/clipstate.cxx | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/basegfx/test/clipstate.cxx b/basegfx/test/clipstate.cxx index 60c6da40f10b..7a3529d8c939 100644 --- a/basegfx/test/clipstate.cxx +++ b/basegfx/test/clipstate.cxx @@ -107,23 +107,21 @@ public: #if defined(VERBOSE) fprintf(stderr, "%s - svg:d=\"%s\"\n", sName, rtl::OUStringToOString( - basegfx::tools::exportToSvgD(toTest.getClipPoly()), + basegfx::tools::exportToSvgD(toTest.getClipPoly(), true, true, false), RTL_TEXTENCODING_UTF8).getStr() ); #endif B2DPolyPolygon aTmp1; CPPUNIT_ASSERT_MESSAGE(sName, tools::importFromSvgD( - aTmp1, - rtl::OUString::createFromAscii(sSvg))); + aTmp1, rtl::OUString::createFromAscii(sSvg), false, 0)); const rtl::OUString aSvg= - tools::exportToSvgD(toTest.getClipPoly()); + tools::exportToSvgD(toTest.getClipPoly(), true, true, false); B2DPolyPolygon aTmp2; CPPUNIT_ASSERT_MESSAGE(sName, tools::importFromSvgD( - aTmp2, - aSvg)); + aTmp2, aSvg, false, 0)); CPPUNIT_ASSERT_MESSAGE( sName, @@ -153,8 +151,7 @@ public: B2DPolyPolygon aTmp1; tools::importFromSvgD( - aTmp1, - rtl::OUString::createFromAscii(unionSvg)); + aTmp1, rtl::OUString::createFromAscii(unionSvg), false, 0); aMixedClip.intersectPolyPolygon(aTmp1); aMixedClip.subtractRange(B2DRange(-20,-150,20,0)); |