summaryrefslogtreecommitdiff
path: root/basegfx/test/clipstate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/test/clipstate.cxx')
-rw-r--r--basegfx/test/clipstate.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basegfx/test/clipstate.cxx b/basegfx/test/clipstate.cxx
index 3a9fcc696782..1414a86aac25 100644
--- a/basegfx/test/clipstate.cxx
+++ b/basegfx/test/clipstate.cxx
@@ -101,14 +101,14 @@ public:
B2DPolyPolygon aTmp1;
CPPUNIT_ASSERT_MESSAGE(sName,
tools::importFromSvgD(
- aTmp1, OUString::createFromAscii(sSvg), false, 0));
+ aTmp1, OUString::createFromAscii(sSvg), false, nullptr));
const OUString aSvg=
tools::exportToSvgD(toTest.getClipPoly(), true, true, false);
B2DPolyPolygon aTmp2;
CPPUNIT_ASSERT_MESSAGE(sName,
tools::importFromSvgD(
- aTmp2, aSvg, false, 0));
+ aTmp2, aSvg, false, nullptr));
CPPUNIT_ASSERT_MESSAGE(
sName,
@@ -139,7 +139,7 @@ public:
B2DPolyPolygon aTmp1;
tools::importFromSvgD(
- aTmp1, OUString::createFromAscii(unionSvg), false, 0);
+ aTmp1, OUString::createFromAscii(unionSvg), false, nullptr);
aMixedClip.intersectPolyPolygon(aTmp1);
aMixedClip.subtractRange(B2DRange(-20,-150,20,0));