summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-21 11:18:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-21 11:20:19 +0100
commit1de5ed41a2a39f7961c877ec5fab8501d70fea7d (patch)
tree3ad9b7989fb49eb7e0b3d5ed9365e9affac17a61 /vcl
parent77ee31f4f89a4db50064040d026feecbbfb7b20b (diff)
loplugin:unnecessaryparen
...with a Clang build with <https://reviews.llvm.org/D40167> "In stdbool.h, define bool, false, true only in gnu++98" locally fixed Change-Id: Ib85111cf8d058b6d7be6460af5266dfccb28c951
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/window/paint.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/paint.cxx b/vcl/source/window/paint.cxx
index f5ab502de3f6..04aab4ccdcaa 100644
--- a/vcl/source/window/paint.cxx
+++ b/vcl/source/window/paint.cxx
@@ -1537,7 +1537,7 @@ void Window::ImplScroll( const tools::Rectangle& rRect,
OutputDevice *pOutDev = GetOutDev();
// RTL: check if this window requires special action
- bool bReMirror = ( ImplIsAntiparallel() );
+ bool bReMirror = ImplIsAntiparallel();
tools::Rectangle aRectMirror( rRect );
if( bReMirror )