summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/polygon')
-rw-r--r--basegfx/source/polygon/b2dpolypolygoncutter.cxx4
-rw-r--r--basegfx/source/polygon/b3dpolygon.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
index b93b271b64d0..bc5cfc48efd0 100644
--- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
+++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
@@ -118,8 +118,8 @@ namespace basegfx
SNV maSNV;
CorrectionTable maCorrectionTable;
- unsigned mbIsCurve : 1;
- unsigned mbChanged : 1;
+ bool mbIsCurve : 1;
+ bool mbChanged : 1;
void impAddPolygon(const sal_uInt32 aPos, const B2DPolygon& rGeometry)
{
diff --git a/basegfx/source/polygon/b3dpolygon.cxx b/basegfx/source/polygon/b3dpolygon.cxx
index 5a07ab2b6d0c..24fe3f0fd82d 100644
--- a/basegfx/source/polygon/b3dpolygon.cxx
+++ b/basegfx/source/polygon/b3dpolygon.cxx
@@ -787,10 +787,10 @@ class ImplB3DPolygon
// bitfield
// flag which decides if this polygon is opened or closed
- unsigned mbIsClosed : 1;
+ bool mbIsClosed : 1;
// flag which says if maPlaneNormal is up-to-date
- unsigned mbPlaneNormalValid : 1;
+ bool mbPlaneNormalValid : 1;
protected:
void invalidatePlaneNormal()