diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-11-27 15:40:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-11-27 15:41:19 +0100 |
commit | cb80350a1a95b9935ca08399672fb67bf4a92e0a (patch) | |
tree | e8fc38a2c55e76dc8651105de37ac36692020fc5 /basegfx | |
parent | 6dcf1e2d795d0c84b0bd28c81df67cfd73d137a8 (diff) |
loplugin:unnecessaryparen
Change-Id: Ief879dde0613859a9ea9b3e3e70938594ab99209
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b3dpolypolygon.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/polygon/b3dpolypolygon.cxx b/basegfx/source/polygon/b3dpolypolygon.cxx index 9aa8c7809982..37186aea94b3 100644 --- a/basegfx/source/polygon/b3dpolypolygon.cxx +++ b/basegfx/source/polygon/b3dpolypolygon.cxx @@ -264,7 +264,7 @@ namespace basegfx { for(sal_uInt32 a(0); a < mpPolyPolygon->count(); a++) { - if((mpPolyPolygon->getB3DPolygon(a)).areBColorsUsed()) + if(mpPolyPolygon->getB3DPolygon(a).areBColorsUsed()) { return true; } @@ -289,7 +289,7 @@ namespace basegfx { for(sal_uInt32 a(0); a < mpPolyPolygon->count(); a++) { - if((mpPolyPolygon->getB3DPolygon(a)).areNormalsUsed()) + if(mpPolyPolygon->getB3DPolygon(a).areNormalsUsed()) { return true; } @@ -314,7 +314,7 @@ namespace basegfx { for(sal_uInt32 a(0); a < mpPolyPolygon->count(); a++) { - if((mpPolyPolygon->getB3DPolygon(a)).areTextureCoordinatesUsed()) + if(mpPolyPolygon->getB3DPolygon(a).areTextureCoordinatesUsed()) { return true; } @@ -365,7 +365,7 @@ namespace basegfx for(sal_uInt32 a(0); !bRetval && a < mpPolyPolygon->count(); a++) { - if((mpPolyPolygon->getB3DPolygon(a)).hasDoublePoints()) + if(mpPolyPolygon->getB3DPolygon(a).hasDoublePoints()) { bRetval = true; } |