summaryrefslogtreecommitdiff
path: root/include/drawinglayer/processor2d/hittestprocessor2d.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 17:52:34 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:52:55 +0100
commit70863f08d83dec5c9ee51d06b64bbca59e9daaef (patch)
treeee298b1dbec44ceb7231e7afeaa897b9c85d7fd9 /include/drawinglayer/processor2d/hittestprocessor2d.hxx
parent10840ad753b60886ea5175060cb0ec2a77e1579a (diff)
Use bool
Change-Id: I2d06ae03650b318a1318d0e2b026352e22404fdd
Diffstat (limited to 'include/drawinglayer/processor2d/hittestprocessor2d.hxx')
-rw-r--r--include/drawinglayer/processor2d/hittestprocessor2d.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/drawinglayer/processor2d/hittestprocessor2d.hxx b/include/drawinglayer/processor2d/hittestprocessor2d.hxx
index fc2ab3252558..6526d93ceedf 100644
--- a/include/drawinglayer/processor2d/hittestprocessor2d.hxx
+++ b/include/drawinglayer/processor2d/hittestprocessor2d.hxx
@@ -52,8 +52,8 @@ namespace drawinglayer
double mfDiscreteHitTolerance;
/// bitfield
- unsigned mbHit : 1;
- unsigned mbHitToleranceUsed : 1;
+ bool mbHit : 1;
+ bool mbHitToleranceUsed : 1;
/* this flag decides if primitives which are embedded to an
UnifiedTransparencePrimitive2D and are invisible will be taken into account for
@@ -61,10 +61,10 @@ namespace drawinglayer
completely invisible and normally their content exists of hairline
primitives describing the object's contour
*/
- unsigned mbUseInvisiblePrimitiveContent : 1;
+ bool mbUseInvisiblePrimitiveContent : 1;
/// flag to concentraze on text hits only
- unsigned mbHitTextOnly : 1;
+ bool mbHitTextOnly : 1;
/// tooling methods
void processBasePrimitive2D(const primitive2d::BasePrimitive2D& rCandidate);