summaryrefslogtreecommitdiff
path: root/include/svx/obj3d.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-17 17:05:29 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-17 18:45:15 +0100
commit03725013b64e74473e1a9e925b24927e7e61d412 (patch)
tree3f7c276d44feda7071b296f0c73b4b7c111b5011 /include/svx/obj3d.hxx
parent20223e2374bb6a966e44471c224d22d968d19025 (diff)
bool improvements
Change-Id: Ic46fa46c200b94e2e6c5a073ba89b9aae5c14542
Diffstat (limited to 'include/svx/obj3d.hxx')
-rw-r--r--include/svx/obj3d.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svx/obj3d.hxx b/include/svx/obj3d.hxx
index d93c98b7c8c9..6b97a8b3262a 100644
--- a/include/svx/obj3d.hxx
+++ b/include/svx/obj3d.hxx
@@ -116,8 +116,8 @@ private:
basegfx::B3DHomMatrix maFullTransform; // global transformation (including. parents)
// Flags
- unsigned mbTfHasChanged : 1;
- unsigned mbIsSelected : 1;
+ bool mbTfHasChanged : 1;
+ bool mbIsSelected : 1;
public:
void SetBoundVolInvalid();
@@ -229,8 +229,8 @@ protected:
Color aMaterialAmbientColor;
// attributes for geometry creation
- unsigned bCreateNormals : 1;
- unsigned bCreateTexture : 1;
+ bool bCreateNormals : 1;
+ bool bCreateTexture : 1;
protected:
void SetDefaultAttributes(E3dDefaultAttributes& rDefault);