Kaydet (Commit) 67a3ad8a authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1435748 silence Unchecked return value

Change-Id: Iba303276f9c9564eb4afe2a9238b009dc8bbc9d3
üst 95e6c264
...@@ -992,7 +992,7 @@ bool SwCursorShell::GotoPrevOutline() ...@@ -992,7 +992,7 @@ bool SwCursorShell::GotoPrevOutline()
SwNode* pNd = &(pCursor->GetNode()); SwNode* pNd = &(pCursor->GetNode());
SwOutlineNodes::size_type nPos; SwOutlineNodes::size_type nPos;
bool bRet = false; bool bRet = false;
rNds.GetOutLineNds().Seek_Entry(pNd, &nPos); (void)rNds.GetOutLineNds().Seek_Entry(pNd, &nPos);
if ( nPos == 0 ) if ( nPos == 0 )
{ {
nPos = rNds.GetOutLineNds().size(); nPos = rNds.GetOutLineNds().size();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment