diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-07-25 21:52:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2024-07-26 12:24:39 +0200 |
commit | e571123891968b60333ef161e68e2d45ccc25a94 (patch) | |
tree | b4a765a777f367f3f5f3b28f8e0574d5ab88f6b4 /sw/source | |
parent | a79f9a79329fa0cbb385c6f9995ae113fa9b4c55 (diff) |
cid#1557746 COPY_INSTEAD_OF_MOVE
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 <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/writerfilter/ooxml/OOXMLFastContextHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/writerfilter/ooxml/OOXMLFastContextHandler.cxx b/sw/source/writerfilter/ooxml/OOXMLFastContextHandler.cxx index 84022cfbe9d9..4707727f87ab 100644 --- a/sw/source/writerfilter/ooxml/OOXMLFastContextHandler.cxx +++ b/sw/source/writerfilter/ooxml/OOXMLFastContextHandler.cxx @@ -1583,7 +1583,7 @@ void OOXMLFastContextHandlerTextTableRow::handleGridBefore( const OOXMLValue::Po NS_ooxml::LN_CT_TcBorders_start, NS_ooxml::LN_CT_TcBorders_end }; for(sal_uInt32 border : borders) pBorderProps->add(border, fakeNoBorder(), OOXMLProperty::SPRM); - OOXMLValue::Pointer_t pValue( new OOXMLPropertySetValue( pBorderProps )); + OOXMLValue::Pointer_t pValue( new OOXMLPropertySetValue(std::move(pBorderProps)) ); pCellProps->add(NS_ooxml::LN_CT_TcPrBase_tcBorders, pValue, OOXMLProperty::SPRM); mpParserState->setCellProperties(pCellProps); } |