summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-27 15:02:28 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-27 21:06:21 +0100
commit2eb0cadf0395c60198e36307222de3dd1e7729a6 (patch)
tree13de18915f50783714a90545bcae7480ddcfc978 /cui
parentc056f4ade7efec94d2cdc19c184486d834638df2 (diff)
loplugin:unnecessaryparen (clang-cl)
Change-Id: I5452235287fd5986de25ee542edd57bf1abded52 Reviewed-on: https://gerrit.libreoffice.org/45338 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optpath.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx
index 6651c2d22dff..d6595644bdb1 100644
--- a/cui/source/options/optpath.cxx
+++ b/cui/source/options/optpath.cxx
@@ -496,7 +496,7 @@ void SvxPathTabPage::ChangeCurrentEntry( const OUString& _rFolder )
// Unix is case sensitive
( sNewPathStr != sWritable );
#else
- ( !sNewPathStr.equalsIgnoreAsciiCase( sWritable ) );
+ !sNewPathStr.equalsIgnoreAsciiCase( sWritable );
#endif
if ( bChanged )