diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 17:52:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-10 17:52:55 +0100 |
commit | 70863f08d83dec5c9ee51d06b64bbca59e9daaef (patch) | |
tree | ee298b1dbec44ceb7231e7afeaa897b9c85d7fd9 /include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx | |
parent | 10840ad753b60886ea5175060cb0ec2a77e1579a (diff) |
Use bool
Change-Id: I2d06ae03650b318a1318d0e2b026352e22404fdd
Diffstat (limited to 'include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx')
-rw-r--r-- | include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx b/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx index 8a9b98490005..2458294ba85c 100644 --- a/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx +++ b/include/drawinglayer/primitive3d/sdrlatheprimitive3d.hxx @@ -61,12 +61,12 @@ namespace drawinglayer geometry::ViewInformation3D* mpLastRLGViewInformation; /// bitfield - unsigned mbSmoothNormals : 1; // Plane self - unsigned mbSmoothHorizontalNormals : 1; // always - unsigned mbSmoothLids : 1; // Front/back - unsigned mbCharacterMode : 1; - unsigned mbCloseFront : 1; - unsigned mbCloseBack : 1; + bool mbSmoothNormals : 1; // Plane self + bool mbSmoothHorizontalNormals : 1; // always + bool mbSmoothLids : 1; // Front/back + bool mbCharacterMode : 1; + bool mbCloseFront : 1; + bool mbCloseBack : 1; /// create slices void impCreateSlices(); |