Kaydet (Commit) 0586bdc7 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#704111: Unchecked return value

Change-Id: Ida3a1b2804f655b39378f79e10872dcac4e70cf1
üst 302bd1c4
......@@ -3213,8 +3213,9 @@ void XMLShapeExport::ImpExportMediaShape(
ImpExportNewTrans(xPropSet, nFeatures, pRefPoint);
if(eShapeType == XmlShapeTypePresMediaShape)
ImpExportPresentationAttributes( xPropSet, GetXMLToken(XML_PRESENTATION_OBJECT) );
{
(void)ImpExportPresentationAttributes( xPropSet, GetXMLToken(XML_PRESENTATION_OBJECT) );
}
bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW,
XML_FRAME, bCreateNewline, true );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment