summaryrefslogtreecommitdiff
path: root/package/inc/ZipFile.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-06-23 15:06:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-06-23 18:24:16 +0200
commit74ff1a4355090c227f4bdcdddb20482a4abd6064 (patch)
tree06ace5d2a3d8e5eb2a8d08c9835350f69d870e92 /package/inc/ZipFile.hxx
parentc7c2f6b37a834a3135e3683f1fc27f3ec938640c (diff)
clang-tidy modernize-pass-by-value in package
Change-Id: Id12d7b38d278c9fb18b30c6d921713a53168b048 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136337 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package/inc/ZipFile.hxx')
-rw-r--r--package/inc/ZipFile.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/package/inc/ZipFile.hxx b/package/inc/ZipFile.hxx
index 15b800430555..7fe15f70ff99 100644
--- a/package/inc/ZipFile.hxx
+++ b/package/inc/ZipFile.hxx
@@ -84,14 +84,14 @@ class ZipFile
public:
- ZipFile( const rtl::Reference<comphelper::RefCountedMutex>& aMutexHolder,
+ ZipFile( rtl::Reference<comphelper::RefCountedMutex> aMutexHolder,
css::uno::Reference < css::io::XInputStream > const &xInput,
- const css::uno::Reference < css::uno::XComponentContext > &rxContext,
+ css::uno::Reference < css::uno::XComponentContext > xContext,
bool bInitialise );
- ZipFile( const rtl::Reference<comphelper::RefCountedMutex>& aMutexHolder,
+ ZipFile( rtl::Reference<comphelper::RefCountedMutex> aMutexHolder,
css::uno::Reference < css::io::XInputStream > const &xInput,
- const css::uno::Reference < css::uno::XComponentContext > &rxContext,
+ css::uno::Reference < css::uno::XComponentContext > xContext,
bool bInitialise,
bool bForceRecover );