sw/source/filter/ww8/rtfattributeoutput.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 10e7d8d1dcf0e3a45044643ab7b572af997543e9
Author:     Caolán McNamara <caolan.mcnam...@collabora.com>
AuthorDate: Wed Dec 27 15:11:33 2023 +0000
Commit:     Caolán McNamara <caolan.mcnam...@collabora.com>
CommitDate: Thu Dec 28 21:18:11 2023 +0100

    cid#1545240 COPY_INSTEAD_OF_MOVE
    
    Change-Id: Ia8cf79801769f3d5026770d1edce0fa6daaad475
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161370
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com>

diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx 
b/sw/source/filter/ww8/rtfattributeoutput.cxx
index ef33b2c2d53c..3fe6215f5e44 100644
--- a/sw/source/filter/ww8/rtfattributeoutput.cxx
+++ b/sw/source/filter/ww8/rtfattributeoutput.cxx
@@ -2109,7 +2109,7 @@ void RtfAttributeOutput::writeTextFrame(const ww8::Frame& 
rFrame, bool bTextBox)
         m_bSingleEmptyRun = bSingleEmptyRunOrig;
 
         // Restore table state.
-        m_rExport.m_pTableInfo = pTableInfoOrig;
+        m_rExport.m_pTableInfo = std::move(pTableInfoOrig);
         m_pTableWrt = std::move(pTableWrt);
         m_nTableDepth = nTableDepth;
     }

Reply via email to