From 55663afa0ee1cf36968b278d81fc8ad686de5435 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 10 Jan 2014 11:51:16 +0100 Subject: Use bool Change-Id: I703bd28163f4ca1a6c8a4e818b0472aa809bdbad --- basegfx/source/polygon/b2dpolypolygoncutter.cxx | 4 ++-- basegfx/source/polygon/b3dpolygon.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'basegfx') 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() -- cgit