coverity#1435748 silence Unchecked return value

Change-Id: Iba303276f9c9564eb4afe2a9238b009dc8bbc9d3
This commit is contained in:
Caolán McNamara
2018-05-23 20:53:51 +01:00
parent 95e6c264e6
commit 67a3ad8a66

View File

@@ -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();