diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 16:49:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-13 16:49:08 +0000 |
commit | bc871d7bd6d4f01d8e5dc96ebe8dcbe9d1b5cad4 (patch) | |
tree | 59ff3c5e73557a0b0c4b4787cd5de698efc9bb98 /sw | |
parent | 6b522f0a6d5518807ea78a425ddcef6ebb3dec89 (diff) |
coverity#708843 Unused pointer value
Change-Id: I6b9d1ef8f6926668c5dbe824b0c900c40f18f8ec
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/docnum.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/docnum.cxx b/sw/source/core/doc/docnum.cxx index 05ec96d4aebb..7e112f02d328 100644 --- a/sw/source/core/doc/docnum.cxx +++ b/sw/source/core/doc/docnum.cxx @@ -385,7 +385,7 @@ bool SwDoc::OutlineUpDown( const SwPaM& rPam, short nOffset ) pColl = aCollArr[ aMoveArr[nLevel] ]; if (pColl != NULL) - pColl = (SwTxtFmtColl*)pTxtNd->ChgFmtColl( pColl ); + (SwTxtFmtColl*)pTxtNd->ChgFmtColl( pColl ); } } |