loplugin:unnecessaryparen
Change-Id: Ief879dde0613859a9ea9b3e3e70938594ab99209
This commit is contained in:
parent
6dcf1e2d79
commit
cb80350a1a
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue