Kaydet (Commit) 35f66cb2 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#1242369: Unchecked return value

Change-Id: Ib5a938d9a8a0ac1f2f5dfb299c948951bb845349
üst 22ca3bf1
......@@ -39,7 +39,7 @@ void GetType(const ListBox& rLstBox, const Edit& rEd, ScColorScaleEntry* pEntry,
case COLORSCALE_PERCENTILE:
case COLORSCALE_VALUE:
case COLORSCALE_PERCENT:
pNumberFormatter->IsNumberFormat( rEd.GetText(), nIndex, nVal );
(void)pNumberFormatter->IsNumberFormat( rEd.GetText(), nIndex, nVal );
pEntry->SetValue(nVal);
break;
case COLORSCALE_FORMULA:
......
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