summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-10-10 17:31:04 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-10-10 19:45:23 +0200
commit6af0da482d8d387f181cb9c2cf9301859c9683cb (patch)
treedadc25d2fb7aaa50e0a0e379d43070e9f7e61553 /sc
parente3fc69457d6b43f88c7540b39564a914648e7f3f (diff)
loplugin:moveparam in editeng
Change-Id: I08aed09b0acd283d700bdf75f650e93dba7c7b85 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123341 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/Accessibility/AccessiblePreviewCell.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/Accessibility/AccessiblePreviewCell.cxx b/sc/source/ui/Accessibility/AccessiblePreviewCell.cxx
index c420bbbfa0cd..f3bc3e717805 100644
--- a/sc/source/ui/Accessibility/AccessiblePreviewCell.cxx
+++ b/sc/source/ui/Accessibility/AccessiblePreviewCell.cxx
@@ -271,7 +271,7 @@ void ScAccessiblePreviewCell::CreateTextHelper()
// paragraphs in preview are transient
::accessibility::AccessibleTextHelper::VectorOfStates aChildStates;
aChildStates.push_back( AccessibleStateType::TRANSIENT );
- mpTextHelper->SetAdditionalChildStates( aChildStates );
+ mpTextHelper->SetAdditionalChildStates( std::move(aChildStates) );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */