From cd8c774030f9a8d3abbaf0eb43a5cdd228e643cf Mon Sep 17 00:00:00 2001 From: Matteo Casalin Date: Mon, 24 Mar 2014 23:57:38 +0100 Subject: Simplify by choosing shape kind in SvXMLElementExport constructor Change-Id: I6d8e1e3c78675b6096f354cace3ff060801cad9e --- xmloff/source/draw/shapeexport.cxx | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) (limited to 'xmloff/source') diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 9f119acdbb5c..f2f7c1bfe3d3 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -2096,21 +2096,10 @@ void XMLShapeExport::ImpExportEllipseShape( sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210# - // prepare name (with most used) - enum ::xmloff::token::XMLTokenEnum eName(XML_CIRCLE); - - if(bCircle) - { - // name already set - } - else - { - // set name - eName = XML_ELLIPSE; - } - // write ellipse or circle - SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, eName, bCreateNewline, sal_True); + SvXMLElementExport aOBJ(mrExport, XML_NAMESPACE_DRAW, + bCircle ? XML_CIRCLE : XML_ELLIPSE, + bCreateNewline, sal_True); ImpExportDescription( xShape ); // #i68101# ImpExportEvents( xShape ); -- cgit