summaryrefslogtreecommitdiff
path: root/vcl/quartz/salbmp.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-08-07 08:12:26 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-08-07 08:12:26 +0200
commit5665259f2d7d696ce5e0566e367c7cf8420fe04d (patch)
treeb799a6df188cacc9d11dfeedf30082c73237fd78 /vcl/quartz/salbmp.cxx
parent4535203c07559215a810f7252b3f250a7e7e1813 (diff)
loplugin:unnecessaryparen
Change-Id: I9496cafef840195e3934bf92600d4e8c8edb6c26
Diffstat (limited to 'vcl/quartz/salbmp.cxx')
-rw-r--r--vcl/quartz/salbmp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/quartz/salbmp.cxx b/vcl/quartz/salbmp.cxx
index 5d358964e7cd..fe8aa8920f7b 100644
--- a/vcl/quartz/salbmp.cxx
+++ b/vcl/quartz/salbmp.cxx
@@ -495,7 +495,7 @@ public:
virtual void SkipPixel( sal_uInt32 nPixel ) override
{
mnX += nPixel;
- if( (nPixel & 1) )
+ if( nPixel & 1 )
{
mnShift ^= 4;
}