Kaydet (Commit) 9e41982a authored tarafından Markus Mohrhard's avatar Markus Mohrhard

text:p is not allowed for chart objects, fdo#58571

Change-Id: I24c485d31ea3f0540164ff65074b392be1e557e6
üst a6077f6d
...@@ -1662,8 +1662,12 @@ void XMLShapeExport::ImpExportOLE2Shape( ...@@ -1662,8 +1662,12 @@ void XMLShapeExport::ImpExportOLE2Shape(
if( !sClassId.isEmpty() ) if( !sClassId.isEmpty() )
mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_CLASS_ID, sClassId ); mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_CLASS_ID, sClassId );
// #i118485# Add text export, the draw OLE shape allows text now if(eShapeType != XmlShapeTypePresChartShape && eShapeType != XmlShapeTypeDrawChartShape)
ImpExportText( xShape ); {
// #i118485# Add text export, the draw OLE shape allows text now
// fdo#58571 chart objects don't allow text:p
ImpExportText( xShape );
}
if(!bExportEmbedded) if(!bExportEmbedded)
{ {
......
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