[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - oox/source

Markus Mohrhard markus.mohrhard at googlemail.com
Tue Jan 16 12:10:33 UTC 2018


 oox/source/export/chartexport.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 64844082ef29963b8d8c1cd47992d989dafb4ced
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Mon Dec 18 01:35:01 2017 +0100

    fix validation error in lineChart export, related tdf#57832
    
    Change-Id: I282a6f476830d688837a9731234aaba37a13de16
    Reviewed-on: https://gerrit.libreoffice.org/46673
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
    (cherry picked from commit 70f9eb96ce3346e24d11ece1b2a75798cbb3c476)
    Reviewed-on: https://gerrit.libreoffice.org/46767
    Reviewed-by: Eike Rathke <erack at redhat.com>

diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx
index a3a1e957a76f..e95835ccffbb 100644
--- a/oox/source/export/chartexport.cxx
+++ b/oox/source/export/chartexport.cxx
@@ -1691,9 +1691,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);


More information about the Libreoffice-commits mailing list