summaryrefslogtreecommitdiff
path: root/filter/source/svg/svgreader.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/svg/svgreader.cxx')
-rw-r--r--filter/source/svg/svgreader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/svg/svgreader.cxx b/filter/source/svg/svgreader.cxx
index dfd269236ee1..43fe63b07ba6 100644
--- a/filter/source/svg/svgreader.cxx
+++ b/filter/source/svg/svgreader.cxx
@@ -136,7 +136,7 @@ bool PolyPolygonIsMixedOpenAndClosed( const basegfx::B2DPolyPolygon& rPoly )
// polygon and there are both closed and open polygons.
for( sal_uInt32 a(0); !bRetval && a < rPoly.count(); a++ )
{
- if ( (rPoly.getB2DPolygon(a)).isClosed() )
+ if ( rPoly.getB2DPolygon(a).isClosed() )
{
bClosed = true;
}