summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-14 13:45:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-14 17:09:23 +0100
commit713524780312315e63f53deac96eaeef8c4e0e13 (patch)
tree11a8e94fd4edb53c9976aa5e403a2fae4f2ae044 /sc
parent89b256f431c09097dd7bf3d163430ec54a7d9260 (diff)
coverity#982180 Unchecked return value
Change-Id: Ida858f633f1e9afcc1a5a06f503f0ab06d2d3e74
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/condformat/condformatdlgentry.cxx2
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)