Kaydet (Commit) 68bb74dd authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#735321 Unchecked return value

Change-Id: I3733471b72e96c8d020b8b5238fdb5fc4bfcacce
üst 7ec1643c
......@@ -925,7 +925,7 @@ ScRangeName* ScLocalNamedRangesObj::GetRangeName_Impl()
SCTAB ScLocalNamedRangesObj::GetTab_Impl()
{
SCTAB nTab;
pDocShell->GetDocument().GetTable(mxSheet->getName(), nTab);
(void)pDocShell->GetDocument().GetTable(mxSheet->getName(), nTab);
return nTab;
}
......
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