summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-07-07 16:00:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-07-07 18:59:55 +0200
commit5f1e7fe6f0573b7b5565eb9d76b686ebc97a06ea (patch)
treed1f6e66c525d2122f7e541c64269c7cfe3883bb3
parent716caf6fe00ed98e5fd0d6d208f5a25e956bc861 (diff)
loplugin:passstuffbyref also for {css::uno,rtl}::Reference
Change-Id: I08992bb66d5459333e018bb52dceee3e808fac8b
-rw-r--r--include/unotools/progresshandlerwrap.hxx2
-rw-r--r--unotools/source/ucbhelper/progresshandlerwrap.cxx2
-rw-r--r--unotools/source/ucbhelper/ucblockbytes.cxx12
3 files changed, 8 insertions, 8 deletions
diff --git a/include/unotools/progresshandlerwrap.hxx b/include/unotools/progresshandlerwrap.hxx
index d6da3c9dc62a..8ed4b7815d1f 100644
--- a/include/unotools/progresshandlerwrap.hxx
+++ b/include/unotools/progresshandlerwrap.hxx
@@ -33,7 +33,7 @@ class UNOTOOLS_DLLPUBLIC ProgressHandlerWrap : public ::cppu::WeakImplHelper< cs
css::uno::Reference< css::task::XStatusIndicator > m_xStatusIndicator;
public:
- ProgressHandlerWrap( css::uno::Reference< css::task::XStatusIndicator > xSI );
+ ProgressHandlerWrap( css::uno::Reference< css::task::XStatusIndicator > const & xSI );
// XProgressHandler
virtual void SAL_CALL push( const css::uno::Any& Status )
diff --git a/unotools/source/ucbhelper/progresshandlerwrap.cxx b/unotools/source/ucbhelper/progresshandlerwrap.cxx
index b84882fdffe4..f3edf6185dfd 100644
--- a/unotools/source/ucbhelper/progresshandlerwrap.cxx
+++ b/unotools/source/ucbhelper/progresshandlerwrap.cxx
@@ -26,7 +26,7 @@ using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::task;
using namespace ::com::sun::star::ucb;
-ProgressHandlerWrap::ProgressHandlerWrap( css::uno::Reference< css::task::XStatusIndicator > xSI )
+ProgressHandlerWrap::ProgressHandlerWrap( css::uno::Reference< css::task::XStatusIndicator > const & xSI )
: m_xStatusIndicator( xSI )
{
}
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx
index a87ef191e08a..f894c1cf7e1a 100644
--- a/unotools/source/ucbhelper/ucblockbytes.cxx
+++ b/unotools/source/ucbhelper/ucblockbytes.cxx
@@ -220,8 +220,8 @@ class Moderator
public:
Moderator(
- Reference < XContent >& xContent,
- Reference < XInteractionHandler >& xInteract,
+ Reference < XContent > const & xContent,
+ Reference < XInteractionHandler > const & xInteract,
const Command& rArg
)
throw(
@@ -495,8 +495,8 @@ ModeratorsInteractionHandler::handle(
}
Moderator::Moderator(
- Reference < XContent >& xContent,
- Reference < XInteractionHandler >& xInteract,
+ Reference < XContent > const & xContent,
+ Reference < XInteractionHandler > const & xInteract,
const Command& rArg
)
throw(
@@ -720,10 +720,10 @@ static bool UCBOpenContentSync_(
static bool UCBOpenContentSync(
const UcbLockBytesRef& xLockBytes,
- Reference < XContent > xContent,
+ Reference < XContent > const & xContent,
const Command& rArg,
const Reference < XInterface >& xSink,
- Reference < XInteractionHandler > xInteract )
+ Reference < XInteractionHandler > const & xInteract )
{
// http protocol must be handled in a special way:
// during the opening process the input stream may change