diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-05-23 20:53:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-05-24 09:06:41 +0100 |
commit | 67a3ad8a6685ff8442ccacc1fb3b5848fb64fbba (patch) | |
tree | 6b45f946f6923c00ab79e41bcf1767e5e17814f9 | |
parent | 95e6c264e69e71d84e5a02ad7ab87ff944cfb17a (diff) |
coverity#1435748 silence Unchecked return value
Change-Id: Iba303276f9c9564eb4afe2a9238b009dc8bbc9d3
-rw-r--r-- | sw/source/core/crsr/crstrvl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/crsr/crstrvl.cxx b/sw/source/core/crsr/crstrvl.cxx index 63690c02c182..c12c9900cfed 100644 --- a/sw/source/core/crsr/crstrvl.cxx +++ b/sw/source/core/crsr/crstrvl.cxx @@ -992,7 +992,7 @@ bool SwCursorShell::GotoPrevOutline() SwNode* pNd = &(pCursor->GetNode()); SwOutlineNodes::size_type nPos; bool bRet = false; - rNds.GetOutLineNds().Seek_Entry(pNd, &nPos); + (void)rNds.GetOutLineNds().Seek_Entry(pNd, &nPos); if ( nPos == 0 ) { nPos = rNds.GetOutLineNds().size(); |