diff options
author | Gülşah Köse <gulsah.kose@collabora.com> | 2019-01-21 17:31:36 +0300 |
---|---|---|
committer | Gülşah Köse <gulsah.kose@collabora.com> | 2019-01-21 20:44:34 +0100 |
commit | 1e38d5b976dacd8b42b8330b4b9635a058ffe20b (patch) | |
tree | 6bab22bdc66cc8707661f4d5a83a84d8e213f6a4 /oox | |
parent | 88e139f19472b361e111c1f8ea62fab29c47188f (diff) |
tdf#122031 Change element order for OOXML compatibility.
Change-Id: I8cca2db6157996dd25afa4c95e769725188fdfb9
Signed-off-by: Gülşah Köse <gulsah.kose@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/66686
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Jenkins
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 28c5771eab44..5e09117183f0 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -3232,6 +3232,7 @@ void ChartExport::exportDataLabels( continue; pFS->startElement(FSNS(XML_c, XML_dLbl), FSEND); + pFS->singleElement(FSNS(XML_c, XML_idx), XML_val, I32S(nIdx), FSEND); if (GetProperty(xLabelPropSet, "NumberFormat") || GetProperty(xLabelPropSet, "PercentageNumberFormat")) { @@ -3246,7 +3247,6 @@ void ChartExport::exportDataLabels( } // Individual label property that overwrites the baseline. - pFS->singleElement(FSNS(XML_c, XML_idx), XML_val, I32S(nIdx), FSEND); exportTextProps( xPropSet ); writeLabelProperties(pFS, this, xLabelPropSet, aParam); pFS->endElement(FSNS(XML_c, XML_dLbl)); |