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(
if( !sClassId.isEmpty() )
mrExport.AddAttribute(XML_NAMESPACE_DRAW, XML_CLASS_ID, sClassId );
// #i118485# Add text export, the draw OLE shape allows text now
ImpExportText( xShape );
if(eShapeType != XmlShapeTypePresChartShape && eShapeType != XmlShapeTypeDrawChartShape)
{
// #i118485# Add text export, the draw OLE shape allows text now
// fdo#58571 chart objects don't allow text:p
ImpExportText( xShape );
}
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