summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-12-15 21:15:29 +0000
committerCaolán McNamara <caolanm@redhat.com>2016-12-16 01:48:37 +0000
commiteb0e2dabde9d96892929f6902d8d10d722b83c3e (patch)
tree4a802b32f23af48efecb48c4eff52427be59bed4 /sc/source
parent0c565095983b0cc8b96a78012c611b7a03962204 (diff)
coverity#1397200 Unchecked return value
and coverity#1397201 Unchecked return value coverity#1397202 Unchecked return value Change-Id: I73cc6e3b08e6a44b27be2093ba568d46ebe0659a
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/filter/xml/xmlcondformat.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/filter/xml/xmlcondformat.cxx b/sc/source/filter/xml/xmlcondformat.cxx
index 6479f1b580a3..d34c27c07e05 100644
--- a/sc/source/filter/xml/xmlcondformat.cxx
+++ b/sc/source/filter/xml/xmlcondformat.cxx
@@ -266,7 +266,7 @@ ScXMLDataBarFormatContext::ScXMLDataBarFormatContext( ScXMLImport& rImport, sal_
if(!sShowValue.isEmpty())
{
bool bShowValue = true;
- sax::Converter::convertBool( bShowValue, sShowValue );
+ (void)sax::Converter::convertBool( bShowValue, sShowValue );
mpFormatData->mbOnlyBar = !bShowValue;
}
@@ -366,7 +366,7 @@ ScXMLIconSetFormatContext::ScXMLIconSetFormatContext(ScXMLImport& rImport, sal_u
if(!sShowValue.isEmpty())
{
bool bShowValue = true;
- sax::Converter::convertBool( bShowValue, sShowValue );
+ (void)sax::Converter::convertBool( bShowValue, sShowValue );
pIconSetFormatData->mbShowValue = !bShowValue;
}