diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-08-07 08:09:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-08-07 08:09:51 +0200 |
commit | 4535203c07559215a810f7252b3f250a7e7e1813 (patch) | |
tree | 580753a42e6d42e6352169a2d5ea022b4fcde619 /sfx2 | |
parent | 9f27587c9db0a5d2daeb7529e477b4199beb2876 (diff) |
loplugin:unnecessaryparen
Change-Id: I8b4bdd1908ba7f804d9c501ce2f9ff7893907ccb
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/shutdowniconaqua.mm | 2 |
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++ ) { |