diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-14 14:22:34 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-03-14 14:30:35 +0100 |
commit | a1b58e93f631c6bfd92fc8269da89c74e3784d58 (patch) | |
tree | f4c41dfaf52962712557a101294959555b673ef4 /xmloff | |
parent | 03782946065d8a31808f1dab9bc848d349d623f1 (diff) |
loplugin:constantparam
Change-Id: I3ce653c0d9e517229dbbe32cc8d3ec3c206e364d
Reviewed-on: https://gerrit.libreoffice.org/51273
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/forms/propertyimport.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/xmloff/source/forms/propertyimport.hxx b/xmloff/source/forms/propertyimport.hxx index 30e57fac4904..47b9312f7e1b 100644 --- a/xmloff/source/forms/propertyimport.hxx +++ b/xmloff/source/forms/propertyimport.hxx @@ -46,12 +46,11 @@ namespace xmloff static css::uno::Any convertString( const css::uno::Type& _rExpectedType, const OUString& _rReadCharacters, - const SvXMLEnumMapEntry<EnumT>* _pEnumMap = nullptr, - const bool _bInvertBoolean = false + const SvXMLEnumMapEntry<EnumT>* _pEnumMap = nullptr ) { return convertString(_rExpectedType, _rReadCharacters, - reinterpret_cast<const SvXMLEnumMapEntry<sal_uInt16>*>(_pEnumMap), _bInvertBoolean); + reinterpret_cast<const SvXMLEnumMapEntry<sal_uInt16>*>(_pEnumMap), /*_bInvertBoolean*/false); } static css::uno::Any convertString( const css::uno::Type& _rExpectedType, |