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

New commits:
commit e5359520ddbef00c0b1930fd6c1685b2df943349
Author: Miklos Vajna <vmik...@collabora.co.uk>
Date:   Wed Aug 3 09:15:33 2016 +0200

    sw: use std::move() in RtfAttributeOutput
    
    Change-Id: Ie410d6d34a663fd438d4e4e966578acc74865c55
    Reviewed-on: https://gerrit.libreoffice.org/27819
    Reviewed-by: Miklos Vajna <vmik...@collabora.co.uk>
    Tested-by: Jenkins <c...@libreoffice.org>

diff --git a/sw/source/filter/ww8/rtfattributeoutput.cxx 
b/sw/source/filter/ww8/rtfattributeoutput.cxx
index cfa4f50..4bff6f8 100644
--- a/sw/source/filter/ww8/rtfattributeoutput.cxx
+++ b/sw/source/filter/ww8/rtfattributeoutput.cxx
@@ -1826,7 +1826,7 @@ void RtfAttributeOutput::writeTextFrame(const ww8::Frame& 
rFrame, bool bTextBox)
 
         // Restore table state.
         m_rExport.m_pTableInfo = pTableInfoOrig;
-        m_pTableWrt.reset(pTableWrt.release());
+        m_pTableWrt = std::move(pTableWrt);
         m_nTableDepth = nTableDepth;
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to