diff options
author | Muhammet Kara <muhammet.kara@pardus.org.tr> | 2016-05-30 17:20:50 +0300 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-07-05 09:35:40 +0000 |
commit | b6b34d538398f8214daa5b160f764dc8b82ff9c5 (patch) | |
tree | 9ffb350c9cbd293618fab09efcff6c8ad06151b3 /vcl | |
parent | 4ed2a7305f80192bdbe2eace48c4ee65e9938f7d (diff) |
Clarify calculation precedence tdf#39440
Use parentheses to clarify the code.
Change-Id: I864dc6dacadb5b9ba9dca8e0abd9fa4e6db1eddc
Reviewed-on: https://gerrit.libreoffice.org/25677
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: jan iversen <jani@documentfoundation.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/outdev/rect.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/outdev/rect.cxx b/vcl/source/outdev/rect.cxx index c4bf57cfff2e..61cbeaa4f4af 100644 --- a/vcl/source/outdev/rect.cxx +++ b/vcl/source/outdev/rect.cxx @@ -217,7 +217,7 @@ void OutputDevice::DrawCheckered(const Point& rPos, const Size& rSize, sal_uInt3 { const sal_uInt32 nBottom(std::min(nMaxY, nY + nLen)); - SetFillColor((x & 0x0001) ^ (y & 0x0001) ? aStart : aEnd); + SetFillColor(((x & 0x0001) ^ (y & 0x0001)) ? aStart : aEnd); DrawRect(Rectangle(nX, nY, nRight, nBottom)); } } |