From 68273aaae40b054b7b7e80b472450a5f64196971 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 1 Apr 2017 19:13:55 +0100 Subject: coverity#1403657 Unchecked return value and coverity#1403656 Unchecked return value Change-Id: I41660df2685b1a07c5ec8f363f6b9c4c581d7c83 --- xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx | 4 ++-- xmloff/source/text/XMLLineNumberingImportContext.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'xmloff/source') diff --git a/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx b/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx index 3ea9582dc344..667660a92df2 100644 --- a/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx +++ b/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx @@ -264,8 +264,8 @@ void XMLFootnoteConfigurationImportContext::StartElement( break; case XML_TOK_FTNCONFIG_START_AT: { - SvXMLUnitConverter::convertEnum(nNumbering, sValue, - aFootnoteNumberingMap); + (void)SvXMLUnitConverter::convertEnum(nNumbering, sValue, + aFootnoteNumberingMap); break; } case XML_TOK_FTNCONFIG_POSITION: diff --git a/xmloff/source/text/XMLLineNumberingImportContext.cxx b/xmloff/source/text/XMLLineNumberingImportContext.cxx index ce2d059dc4f9..e70cd6db2bd1 100644 --- a/xmloff/source/text/XMLLineNumberingImportContext.cxx +++ b/xmloff/source/text/XMLLineNumberingImportContext.cxx @@ -190,8 +190,8 @@ void XMLLineNumberingImportContext::ProcessAttribute( { XML_TOKEN_INVALID, 0 } }; - SvXMLUnitConverter::convertEnum(nNumberPosition, sValue, - aLineNumberPositionMap); + (void)SvXMLUnitConverter::convertEnum(nNumberPosition, sValue, + aLineNumberPositionMap); break; } -- cgit