Kaydet (Commit) 3812e99e authored tarafından Markus Mohrhard's avatar Markus Mohrhard

another validation error with OOXML chart export

c:characters does not have an attribute val. The value has to be written
out as normal string.

Change-Id: Icd2c4034918bd223d0c8082a7d137e1ce79a9cfe
üst 672398d8
......@@ -2368,7 +2368,9 @@ void ChartExport::exportDataLabels(
if (GetProperty( xPropSet, "LabelSeparator"))
{
mAny >>= aSep;
pFS->singleElement( FSNS( XML_c, XML_separator), XML_val, USS(aSep), FSEND);
pFS->startElement( FSNS( XML_c, XML_separator), FSEND);
pFS->writeEscaped(aSep);
pFS->endElement( FSNS( XML_c, XML_separator) );
}
pFS->endElement( FSNS( XML_c, XML_dLbl ));
}
......
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