summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-08-07 08:09:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-08-07 08:09:51 +0200
commit4535203c07559215a810f7252b3f250a7e7e1813 (patch)
tree580753a42e6d42e6352169a2d5ea022b4fcde619 /sfx2
parent9f27587c9db0a5d2daeb7529e477b4199beb2876 (diff)
loplugin:unnecessaryparen
Change-Id: I8b4bdd1908ba7f804d9c501ce2f9ff7893907ccb
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/shutdowniconaqua.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/shutdowniconaqua.mm b/sfx2/source/appl/shutdowniconaqua.mm
index ebf830568f54..78dbec386269 100644
--- a/sfx2/source/appl/shutdowniconaqua.mm
+++ b/sfx2/source/appl/shutdowniconaqua.mm
@@ -179,7 +179,7 @@ class RecentFilesStringLength : public ::cppu::WeakImplHelper< css::util::XStrin
int nPickListMenuItems = ( aHistoryList.getLength() > 99 ) ? 99 : aHistoryList.getLength();
m_pRecentFilesItems->clear();
- if( ( nPickListMenuItems > 0 ) )
+ if( nPickListMenuItems > 0 )
{
for ( int i = 0; i < nPickListMenuItems; i++ )
{