summaryrefslogtreecommitdiff
path: root/basegfx/source/polygon/b2dpolygonclipper.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-10 11:50:37 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-10 17:11:46 +0100
commit1acab105ba508b559d98600388b4d6be39dfad05 (patch)
tree6d5ca6c308bbd4faa17ac0f71229df4fb19c9134 /basegfx/source/polygon/b2dpolygonclipper.cxx
parentae83e285473f703958c21e23b2a455e6646d8542 (diff)
Be explicit when using bool as integral value
Change-Id: I301ff695359cb7e29269f1b99db0c3a547fd4c9f
Diffstat (limited to 'basegfx/source/polygon/b2dpolygonclipper.cxx')
-rw-r--r--basegfx/source/polygon/b2dpolygonclipper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basegfx/source/polygon/b2dpolygonclipper.cxx b/basegfx/source/polygon/b2dpolygonclipper.cxx
index 6a460430c168..2cf7c30eb1de 100644
--- a/basegfx/source/polygon/b2dpolygonclipper.cxx
+++ b/basegfx/source/polygon/b2dpolygonclipper.cxx
@@ -732,7 +732,7 @@ namespace basegfx
stack[2] = rCandidate.getB2DPoint(nIndex);
// clipping judgement
- clipflag |= !(rRange.isInside(stack[2]));
+ clipflag |= unsigned(!(rRange.isInside(stack[2])));
if(nIndex > 1)
{