summaryrefslogtreecommitdiff
path: root/comphelper
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 /comphelper
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 'comphelper')
-rw-r--r--comphelper/source/misc/interaction.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/interaction.cxx b/comphelper/source/misc/interaction.cxx
index 5a24075504b7..e1fd64d9b04b 100644
--- a/comphelper/source/misc/interaction.cxx
+++ b/comphelper/source/misc/interaction.cxx
@@ -36,9 +36,9 @@ namespace comphelper
}
OInteractionRequest::OInteractionRequest(const Any& rRequestDescription,
- std::vector<Reference<XInteractionContinuation>> const& rContinuations)
+ std::vector<Reference<XInteractionContinuation>>&& rContinuations)
: m_aRequest(rRequestDescription)
- , m_aContinuations(rContinuations)
+ , m_aContinuations(std::move(rContinuations))
{
}