summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-14 13:08:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-14 13:42:18 +0100
commitf9a90514dec3dfbf1aea74a9296513c830ec6481 (patch)
tree1440297ef4b1e0d04e895bfafd3b4f4c06c70c61 /sfx2
parent4f7cb49f93a55215c48f9e98f293b08293b56036 (diff)
coverity#1078471 Unchecked return value
Change-Id: I2eb340eddf77ef5f007b5588e78d2b03bb5eb059
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/bastyp/sfxhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/bastyp/sfxhtml.cxx b/sfx2/source/bastyp/sfxhtml.cxx
index 0e036c90d222..8549e9b7c64a 100644
--- a/sfx2/source/bastyp/sfxhtml.cxx
+++ b/sfx2/source/bastyp/sfxhtml.cxx
@@ -332,7 +332,7 @@ double SfxHTMLParser::GetTableDataOptionsValNum( sal_uInt32& nNumForm,
LanguageType eParseLang = (LanguageType )aNumStr.toInt32();
sal_uInt32 nParseForm = rFormatter.GetFormatForLanguageIfBuiltIn( 0, eParseLang );
double fVal;
- rFormatter.IsNumberFormat( aValStr, nParseForm, fVal );
+ (void)rFormatter.IsNumberFormat(aValStr, nParseForm, fVal);
if ( comphelper::string::getTokenCount(aNumStr, ';') > 2 )
{
eNumLang = (LanguageType)aNumStr.getToken( 1, ';' ).toInt32();