From ed373ea7efd34ca6baab8ddbf809e6f2a06f1a9e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 15 Jan 2016 09:36:20 +0200 Subject: loplugin:unusedmethods unused return value in include/xmloff Change-Id: I6615a467152a50e9c65f04fd0d6c8cc128517bdb --- xmloff/source/style/ImageStyle.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xmloff/source/style/ImageStyle.cxx') diff --git a/xmloff/source/style/ImageStyle.cxx b/xmloff/source/style/ImageStyle.cxx index 4be9fa06d041..64c76f2a08fa 100644 --- a/xmloff/source/style/ImageStyle.cxx +++ b/xmloff/source/style/ImageStyle.cxx @@ -99,9 +99,9 @@ void XMLImageStyle::ImpExportXML( const OUString& rStrName, const uno::Any& rVal } } -bool XMLImageStyle::importXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList, uno::Any& rValue, OUString& rStrName, SvXMLImport& rImport ) +void XMLImageStyle::importXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList, uno::Any& rValue, OUString& rStrName, SvXMLImport& rImport ) { - return ImpImportXML( xAttrList, rValue, rStrName, rImport ); + ImpImportXML( xAttrList, rValue, rStrName, rImport ); } bool XMLImageStyle::ImpImportXML( const uno::Reference< xml::sax::XAttributeList >& xAttrList, -- cgit