summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-30 12:15:18 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-31 08:25:37 +0200
commitc394363c84064c041391627602665ea1fa74db60 (patch)
tree7e41cb32ff0e2b0701ff3113c8a819f5f961d497 /package
parentloplugin:oncevar (diff)
downloadcore-c394363c84064c041391627602665ea1fa74db60.tar.gz
core-c394363c84064c041391627602665ea1fa74db60.zip
loplugin:constparams in basctl
Change-Id: If6c2b980a2916c4ee8ac108fbb84b006a35f49c5 Reviewed-on: https://gerrit.libreoffice.org/40570 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package')
-rw-r--r--package/inc/ZipFile.hxx4
-rw-r--r--package/source/zipapi/ZipFile.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/package/inc/ZipFile.hxx b/package/inc/ZipFile.hxx
index 021493d64459..6065a8f3af35 100644
--- a/package/inc/ZipFile.hxx
+++ b/package/inc/ZipFile.hxx
@@ -90,12 +90,12 @@ class ZipFile
public:
ZipFile( const rtl::Reference<comphelper::RefCountedMutex>& aMutexHolder,
- css::uno::Reference < css::io::XInputStream > &xInput,
+ css::uno::Reference < css::io::XInputStream > const &xInput,
const css::uno::Reference < css::uno::XComponentContext > &rxContext,
bool bInitialise );
ZipFile( const rtl::Reference<comphelper::RefCountedMutex>& aMutexHolder,
- css::uno::Reference < css::io::XInputStream > &xInput,
+ css::uno::Reference < css::io::XInputStream > const &xInput,
const css::uno::Reference < css::uno::XComponentContext > &rxContext,
bool bInitialise,
bool bForceRecover );
diff --git a/package/source/zipapi/ZipFile.cxx b/package/source/zipapi/ZipFile.cxx
index 3108578fad3b..11bc362c6a48 100644
--- a/package/source/zipapi/ZipFile.cxx
+++ b/package/source/zipapi/ZipFile.cxx
@@ -72,7 +72,7 @@ using ZipUtils::Inflater;
/** This class is used to read entries from a zip file
*/
ZipFile::ZipFile( const rtl::Reference<comphelper::RefCountedMutex>& aMutexHolder,
- uno::Reference < XInputStream > &xInput,
+ uno::Reference < XInputStream > const &xInput,
const uno::Reference < XComponentContext > & rxContext,
bool bInitialise )
: m_aMutexHolder( aMutexHolder )
@@ -93,7 +93,7 @@ ZipFile::ZipFile( const rtl::Reference<comphelper::RefCountedMutex>& aMutexHolde
}
ZipFile::ZipFile( const rtl::Reference< comphelper::RefCountedMutex >& aMutexHolder,
- uno::Reference < XInputStream > &xInput,
+ uno::Reference < XInputStream > const &xInput,
const uno::Reference < XComponentContext > & rxContext,
bool bInitialise, bool bForceRecovery)
: m_aMutexHolder( aMutexHolder )