diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-05 17:57:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-05 17:57:18 +0200 |
commit | cb2550750386f51ef7a46a8a664a4ab9de614f8d (patch) | |
tree | aabfee7b4e12074f4ed6f80e8f2f5101d284385e /include/unotools | |
parent | e808bbe1ce51465e6f3e9dc4fec2ecd263fe0e4b (diff) |
Drop lazywrite property, which is silently ignored by configmgr anyway
...at least ever since the "new" configmgr reimplementation,
6b849a6aeeb9ea8b1e25e28d5a8be390e425f84e "#i101955# initial work in progress of
a configmgr reimplementation (for now in an extra module 'configmgr2')" et al
Change-Id: I43430d991647fb2e26762463d51175247db0604b
Diffstat (limited to 'include/unotools')
-rw-r--r-- | include/unotools/confignode.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/unotools/confignode.hxx b/include/unotools/confignode.hxx index d813af86a616..09c9bb266308 100644 --- a/include/unotools/confignode.hxx +++ b/include/unotools/confignode.hxx @@ -244,8 +244,7 @@ namespace utl const css::uno::Reference< css::lang::XMultiServiceFactory >& _rxConfProvider, const OUString& _rPath, sal_Int32 _nDepth, - CREATION_MODE _eMode, - bool _bLazyWrite = true + CREATION_MODE _eMode ); /** open a new top-level configuration node<p/> @@ -261,7 +260,7 @@ namespace utl @param _eMode specifies which privileges should be applied when retrieving the node */ static OConfigurationTreeRoot createWithComponentContext(const css::uno::Reference< css::uno::XComponentContext >& _rxContext, - const OUString& _rPath, sal_Int32 _nDepth = -1, CREATION_MODE _eMode = CM_UPDATABLE, bool _bLazyWrite = true); + const OUString& _rPath, sal_Int32 _nDepth = -1, CREATION_MODE _eMode = CM_UPDATABLE); /** tolerant version of the <member>createWithServiceFactory</member> |