summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-10-19 15:26:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-10-19 15:26:50 +0100
commitf7397024fef154f7bedcb844678e1cabba1e5cd8 (patch)
tree6d4792eba4352e07069662b28ca4cc7e6972198a
parent724f2b20d83c340d9cb1221766a741f432ed9204 (diff)
coverity#1371215 Missing move assignment operator
Change-Id: Icfea2ad2ba98d7537cf1963ad3832ade192c5fd4
-rw-r--r--sw/source/filter/ww8/wrtww8.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 7afa9443646e..e54c4b2408ef 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;