From e571123891968b60333ef161e68e2d45ccc25a94 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 25 Jul 2024 21:52:19 +0100 Subject: cid#1557746 COPY_INSTEAD_OF_MOVE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit and cid#1557751 COPY_INSTEAD_OF_MOVE cid#1557771 COPY_INSTEAD_OF_MOVE cid#1557775 COPY_INSTEAD_OF_MOVE cid#1557786 COPY_INSTEAD_OF_MOVE cid#1557787 COPY_INSTEAD_OF_MOVE cid#1557790 COPY_INSTEAD_OF_MOVE cid#1557793 COPY_INSTEAD_OF_MOVE cid#1557794 COPY_INSTEAD_OF_MOVE Change-Id: I1b02b6eca303b1a08975ea8aae7c9dbefbada47f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171061 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- sc/source/ui/unoobj/appluno.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc') diff --git a/sc/source/ui/unoobj/appluno.cxx b/sc/source/ui/unoobj/appluno.cxx index c4c6f73dc7a2..bda4c87b1f54 100644 --- a/sc/source/ui/unoobj/appluno.cxx +++ b/sc/source/ui/unoobj/appluno.cxx @@ -464,7 +464,7 @@ static void lcl_FillSequence( uno::Sequence& rSequence, co aArgument.Name = rDesc.maDefArgNames[i]; aArgument.Description = rDesc.maDefArgDescs[i]; aArgument.IsOptional = rDesc.pDefArgFlags[i].bOptional; - pArgAry[j++] = aArgument; + pArgAry[j++] = std::move(aArgument); } pArray[4].Value <<= aArgSeq; } -- cgit