summaryrefslogtreecommitdiffstats
path: root/basegfx/source/polygon/b3dpolygon.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/polygon/b3dpolygon.cxx')
-rw-r--r--basegfx/source/polygon/b3dpolygon.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx
index acf1ec8c3458..848bd2cf0c51 100644
--- a/basegfx/source/polygon/b3dpolygon.cxx
+++ b/basegfx/source/polygon/b3dpolygon.cxx
@@ -288,7 +288,7 @@ public:
bool isUsed() const
{
- return (0 != mnUsedEntries);
+ return (mnUsedEntries != 0);
}
const ::basegfx::BColor& getBColor(sal_uInt32 nIndex) const
@@ -441,7 +441,7 @@ public:
bool isUsed() const
{
- return (0 != mnUsedEntries);
+ return (mnUsedEntries != 0);
}
const ::basegfx::B3DVector& getNormal(sal_uInt32 nIndex) const
@@ -604,7 +604,7 @@ public:
bool isUsed() const
{
- return (0 != mnUsedEntries);
+ return (mnUsedEntries != 0);
}
const ::basegfx::B2DPoint& getTextureCoordinate(sal_uInt32 nIndex) const
@@ -1655,7 +1655,7 @@ namespace basegfx
nCount = rPoly.count();
}
- if(0 == nIndex && nCount == rPoly.count())
+ if(nIndex == 0 && nCount == rPoly.count())
{
mpPolygon->insert(mpPolygon->count(), *rPoly.mpPolygon);
}