summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-10-06 19:42:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-10-06 21:17:01 +0200
commit7c3990c38ddc5e69c89d9cb0c1a521f144e852f7 (patch)
treef1c5b33d025ec7211a7420a673593d47a2ee641e /include
parent46a2b36aefde5de7abeaca230973cf0d47b9a505 (diff)
loplugin:moveparam in connectivity
Change-Id: Iaf3a64effb69fd82c6303d8fa75723ccc5ced543 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123183 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/interaction.hxx2
-rw-r--r--include/connectivity/paramwrapper.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/interaction.hxx b/include/comphelper/interaction.hxx
index b138023329fb..4c9f61948c80 100644
--- a/include/comphelper/interaction.hxx
+++ b/include/comphelper/interaction.hxx
@@ -100,7 +100,7 @@ namespace comphelper
public:
OInteractionRequest(const css::uno::Any& _rRequestDescription);
OInteractionRequest(const css::uno::Any& rRequestDescription,
- std::vector<css::uno::Reference<css::task::XInteractionContinuation>> const& rContinuations);
+ std::vector<css::uno::Reference<css::task::XInteractionContinuation>>&& rContinuations);
/// add a new continuation
void addContinuation(const css::uno::Reference< css::task::XInteractionContinuation >& _rxContinuation);
diff --git a/include/connectivity/paramwrapper.hxx b/include/connectivity/paramwrapper.hxx
index 1911431b256f..bf16e0851fcb 100644
--- a/include/connectivity/paramwrapper.hxx
+++ b/include/connectivity/paramwrapper.hxx
@@ -86,7 +86,7 @@ namespace dbtools::param
ParameterWrapper(
const css::uno::Reference< css::beans::XPropertySet >& _rxColumn,
const css::uno::Reference< css::sdbc::XParameters >& _rxAllParameters,
- const ::std::vector< sal_Int32 >& _rIndexes
+ std::vector< sal_Int32 >&& _rIndexes
);
DECLARE_XINTERFACE()