diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-14 13:41:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-15 08:27:25 +0200 |
commit | b47cb646ff2a62fcd3fac0e453a7261bbaefbcb7 (patch) | |
tree | 49a2dc78e998baa77212776d7d94fb8d72dc0f00 /ucbhelper | |
parent | 89e0663c55f7f1763536a345d63111115c71ef26 (diff) |
loplugin:constantparam
Change-Id: I270e068b3c83e966e741b0a072fecce9d92d53f5
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/contenthelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucbhelper/source/provider/contenthelper.cxx b/ucbhelper/source/provider/contenthelper.cxx index 36aef580543d..b66c6687012c 100644 --- a/ucbhelper/source/provider/contenthelper.cxx +++ b/ucbhelper/source/provider/contenthelper.cxx @@ -673,10 +673,10 @@ bool ContentImplHelper::copyAdditionalPropertySet( rSourceKey, rTargetKey, bRecursive ); } -bool ContentImplHelper::removeAdditionalPropertySet( bool bRecursive ) +bool ContentImplHelper::removeAdditionalPropertySet() { return m_xProvider->removeAdditionalPropertySet( - m_xIdentifier->getContentIdentifier(), bRecursive ); + m_xIdentifier->getContentIdentifier(), true/*bRecursive*/ ); } void ContentImplHelper::notifyPropertiesChange( |