summaryrefslogtreecommitdiffstats
path: root/basegfx/source/polygon/b2dpolypolygon.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/polygon/b2dpolypolygon.cxx')
-rw-r--r--basegfx/source/polygon/b2dpolypolygon.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygon.cxx b/basegfx/source/polygon/b2dpolypolygon.cxx
index eaed3bacdc54..977adde32d7f 100644
--- a/basegfx/source/polygon/b2dpolypolygon.cxx
+++ b/basegfx/source/polygon/b2dpolypolygon.cxx
@@ -333,7 +333,7 @@ namespace basegfx
// no Polygon exists.
for(sal_uInt32 a(0); bRetval && a < mpPolyPolygon->count(); a++)
{
- if(!(mpPolyPolygon->getB2DPolygon(a)).isClosed())
+ if(!mpPolyPolygon->getB2DPolygon(a).isClosed())
{
bRetval = false;
}
@@ -362,7 +362,7 @@ namespace basegfx
for(sal_uInt32 a(0); !bRetval && a < mpPolyPolygon->count(); a++)
{
- if((mpPolyPolygon->getB2DPolygon(a)).hasDoublePoints())
+ if(mpPolyPolygon->getB2DPolygon(a).hasDoublePoints())
{
bRetval = true;
}