diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-03 09:52:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-06 07:13:42 +0100 |
commit | 0d50804e1c0c0ea2a5cd73fa3fa2a9ff0a0e7048 (patch) | |
tree | ab861bba797a4610ffd5b482cc8fa4c4d5b59c35 /scripting | |
parent | 26e8b589b3f7716a80df7f3a9273e4967d9b0991 (diff) |
loplugin:constparams in various(2)
Change-Id: I533a7eb724b15e168a28dc92cd5962a39bc96e7c
Reviewed-on: https://gerrit.libreoffice.org/44313
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/stringresource/stringresource.cxx | 2 | ||||
-rw-r--r-- | scripting/source/stringresource/stringresource.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripting/source/stringresource/stringresource.cxx b/scripting/source/stringresource/stringresource.cxx index 6681920e4dc5..88becc349103 100644 --- a/scripting/source/stringresource/stringresource.cxx +++ b/scripting/source/stringresource/stringresource.cxx @@ -2040,7 +2040,7 @@ void implWriteStringWithEncoding( const OUString& aStr, xTextOutputStream->writeString( aWriteStr ); } -bool StringResourcePersistenceImpl::implWritePropertiesFile( LocaleItem* pLocaleItem, +bool StringResourcePersistenceImpl::implWritePropertiesFile( LocaleItem const * pLocaleItem, const Reference< io::XOutputStream >& xOutputStream, const OUString& aComment ) { if( !xOutputStream.is() || pLocaleItem == nullptr ) diff --git a/scripting/source/stringresource/stringresource.hxx b/scripting/source/stringresource/stringresource.hxx index 860c455e73d4..12a7310ed765 100644 --- a/scripting/source/stringresource/stringresource.hxx +++ b/scripting/source/stringresource/stringresource.hxx @@ -228,7 +228,7 @@ protected: bool implReadPropertiesFile( LocaleItem* pLocaleItem, const css::uno::Reference< css::io::XInputStream >& xInput ); - bool implWritePropertiesFile( LocaleItem* pLocaleItem, + bool implWritePropertiesFile( LocaleItem const * pLocaleItem, const css::uno::Reference< css::io::XOutputStream >& xOutputStream, const OUString& aComment ); |