diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-14 13:45:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-14 17:09:23 +0100 |
commit | 713524780312315e63f53deac96eaeef8c4e0e13 (patch) | |
tree | 11a8e94fd4edb53c9976aa5e403a2fae4f2ae044 /sc | |
parent | 89b256f431c09097dd7bf3d163430ec54a7d9260 (diff) |
coverity#982180 Unchecked return value
Change-Id: Ida858f633f1e9afcc1a5a06f503f0ab06d2d3e74
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/condformat/condformatdlgentry.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/condformat/condformatdlgentry.cxx b/sc/source/ui/condformat/condformatdlgentry.cxx index 52ec40026dee..b45f23c20b82 100644 --- a/sc/source/ui/condformat/condformatdlgentry.cxx +++ b/sc/source/ui/condformat/condformatdlgentry.cxx @@ -1388,7 +1388,7 @@ ScColorScaleEntry* ScIconSetFrmtDataEntry::CreateEntry(ScDocument* pDoc, const S sal_uInt32 nIndex = 0; double nVal = 0; SvNumberFormatter* pNumberFormatter = pDoc->GetFormatTable(); - pNumberFormatter->IsNumberFormat(aText, nIndex, nVal); + (void)pNumberFormatter->IsNumberFormat(aText, nIndex, nVal); pEntry->SetValue(nVal); switch(nPos) |