diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-30 12:15:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-31 08:25:37 +0200 |
commit | c394363c84064c041391627602665ea1fa74db60 (patch) | |
tree | 7e41cb32ff0e2b0701ff3113c8a819f5f961d497 /ucb/source | |
parent | c9253818ec8252169c20450b41878be459568d95 (diff) |
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 'ucb/source')
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonSession.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx index ca87d6e4aad3..5f9addf184f9 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.cxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx @@ -160,7 +160,7 @@ struct NeonRequestContext const std::vector< OUString > * pHeaderNames; DAVResource * pResource; - explicit NeonRequestContext( uno::Reference< io::XOutputStream > & xOutStrm ) + explicit NeonRequestContext( uno::Reference< io::XOutputStream > const & xOutStrm ) : xOutputStream( xOutStrm ), xInputStream( nullptr ), pHeaderNames( nullptr ), pResource( nullptr ) {} @@ -168,7 +168,7 @@ struct NeonRequestContext : xOutputStream( nullptr ), xInputStream( xInStrm ), pHeaderNames( nullptr ), pResource( nullptr ) {} - NeonRequestContext( uno::Reference< io::XOutputStream > & xOutStrm, + NeonRequestContext( uno::Reference< io::XOutputStream > const & xOutStrm, const std::vector< OUString > & inHeaderNames, DAVResource & ioResource ) : xOutputStream( xOutStrm ), xInputStream( nullptr ), |