summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-12-18 01:35:01 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-12-19 09:14:18 +0100
commit70f9eb96ce3346e24d11ece1b2a75798cbb3c476 (patch)
tree5382d513822bdae6afcdbad369c43c02acdd27d3
parenta0bf35f7c0eedbe04783285a4a7071e68baeb7fe (diff)
fix validation error in lineChart export, related tdf#57832
Change-Id: I282a6f476830d688837a9731234aaba37a13de16 Reviewed-on: https://gerrit.libreoffice.org/46673 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--oox/source/export/chartexport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index 1eff9ee68c9e..1ea6ab3c1550 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1545,9 +1545,9 @@ void ChartExport::exportLineChart( const Reference< chart2::XChartType >& xChart
pFS->startElement( FSNS( XML_c, nTypeId ),
FSEND );
- exportVaryColors(xChartType);
-
exportGrouping( );
+
+ exportVaryColors(xChartType);
// TODO: show marker symbol in series?
bool bPrimaryAxes = true;
exportSeries(xChartType, *itr, bPrimaryAxes);