summaryrefslogtreecommitdiff
path: root/oox/source/drawingml/table/tablecell.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/drawingml/table/tablecell.cxx')
-rw-r--r--oox/source/drawingml/table/tablecell.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/drawingml/table/tablecell.cxx b/oox/source/drawingml/table/tablecell.cxx
index c04960240ec7..2784ea818eb2 100644
--- a/oox/source/drawingml/table/tablecell.cxx
+++ b/oox/source/drawingml/table/tablecell.cxx
@@ -613,11 +613,11 @@ void TableCell::pushToXCell( const ::oox::core::XmlFilterBase& rFilterBase, cons
{
sal_Int32 nLength = aGrabBag.getLength();
aGrabBag.realloc(nLength + 1);
- aGrabBag.getArray()[nLength] = aPropertyValue;
+ aGrabBag.getArray()[nLength] = std::move(aPropertyValue);
}
else
{
- aGrabBag = { aPropertyValue };
+ aGrabBag = { std::move(aPropertyValue) };
}
xPropSet->setPropertyValue(u"CellInteropGrabBag"_ustr, Any(aGrabBag));
}