diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-26 14:44:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-29 08:04:06 +0200 |
commit | 1110346b3b8e57a190366aabebb62e53c6ab6d01 (patch) | |
tree | aa22f8f28cab116834e4222ef03206a7e0b0d29d /unotools/source/config/confignode.cxx | |
parent | 2b24b6b6c3b18d7d934b3f76cc7a787c498ece4a (diff) |
loplugin:unuseddefaultparam in unotools
Change-Id: Icb2dc74263026d90b7998b3fd880fd5d2c67a3b7
Diffstat (limited to 'unotools/source/config/confignode.cxx')
-rw-r--r-- | unotools/source/config/confignode.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/config/confignode.cxx b/unotools/source/config/confignode.cxx index e1b31cc0db76..827973221273 100644 --- a/unotools/source/config/confignode.cxx +++ b/unotools/source/config/confignode.cxx @@ -551,13 +551,13 @@ namespace utl } OConfigurationTreeRoot OConfigurationTreeRoot::tryCreateWithComponentContext( const Reference< XComponentContext >& rxContext, - const OUString& _rPath, sal_Int32 _nDepth , CREATION_MODE _eMode , bool _bLazyWrite ) + const OUString& _rPath, sal_Int32 _nDepth , CREATION_MODE _eMode ) { OSL_ENSURE( rxContext.is(), "OConfigurationTreeRoot::tryCreateWithComponentContext: invalid XComponentContext!" ); try { Reference< XMultiServiceFactory > xConfigFactory = theDefaultProvider::get( rxContext ); - return createWithProvider( xConfigFactory, _rPath, _nDepth, _eMode, _bLazyWrite ); + return createWithProvider( xConfigFactory, _rPath, _nDepth, _eMode ); } catch(const Exception&) { |