[Libreoffice-commits] core.git: sw/source

Caolán McNamara caolanm at redhat.com
Wed Oct 19 14:27:29 UTC 2016


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

New commits:
commit f7397024fef154f7bedcb844678e1cabba1e5cd8
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed Oct 19 15:26:50 2016 +0100

    coverity#1371215 Missing move assignment operator
    
    Change-Id: Icfea2ad2ba98d7537cf1963ad3832ade192c5fd4

diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 7afa944..e54c4b2 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -2763,7 +2763,7 @@ void MSWordExportBase::WriteText()
         }
 
         if (pNextNode != nullptr)
-            m_pCurPam->GetPoint()->nNode = SwNodeIndex(*pNextNode);
+            m_pCurPam->GetPoint()->nNode.Assign(*pNextNode);
         else
             ++m_pCurPam->GetPoint()->nNode;
 


More information about the Libreoffice-commits mailing list