summaryrefslogtreecommitdiff
path: root/desktop
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 /desktop
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 'desktop')
-rw-r--r--desktop/source/deployment/misc/dp_interact.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/misc/dp_interact.cxx b/desktop/source/deployment/misc/dp_interact.cxx
index 27a2fc075664..9c5818cc669a 100644
--- a/desktop/source/deployment/misc/dp_interact.cxx
+++ b/desktop/source/deployment/misc/dp_interact.cxx
@@ -108,7 +108,7 @@ bool interactContinuation( Any const & request,
new InteractionContinuationImpl(continuation, &cont ),
new InteractionContinuationImpl( cppu::UnoType<task::XInteractionAbort>::get(), &abort ) };
xInteractionHandler->handle(
- new ::comphelper::OInteractionRequest( request, conts ) );
+ new ::comphelper::OInteractionRequest( request, std::move(conts) ) );
if (cont || abort) {
if (pcont != nullptr)
*pcont = cont;