summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/cmis/auth_provider.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/cmis/auth_provider.hxx b/ucb/source/ucp/cmis/auth_provider.hxx
index c350617e226c..1768c12173f0 100644
--- a/ucb/source/ucp/cmis/auth_provider.hxx
+++ b/ucb/source/ucp/cmis/auth_provider.hxx
@@ -31,10 +31,10 @@ namespace cmis
OUString m_sBindingUrl;
public:
- AuthProvider ( css::uno::Reference< css::ucb::XCommandEnvironment> xEnv,
+ AuthProvider ( const css::uno::Reference< css::ucb::XCommandEnvironment> & xEnv,
OUString sUrl,
OUString sBindingUrl ):
- m_xEnv( std::move(xEnv) ), m_sUrl( std::move(sUrl) ), m_sBindingUrl( std::move(sBindingUrl) ) { }
+ m_xEnv( xEnv ), m_sUrl( std::move(sUrl) ), m_sBindingUrl( std::move(sBindingUrl) ) { }
bool authenticationQuery( std::string& username, std::string& password ) override;