diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-12-13 20:30:13 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-12-13 20:48:31 +0100 |
commit | e1ace08771da5b32ed9801d4ee6166c619aae8fa (patch) | |
tree | 68427ba9dea0f1423735ffd01abf1b3253af83a6 | |
parent | 077213c23e377fd7398b35b88050ac173d22d268 (diff) |
fix an OOXML validation error with the last patch
Change-Id: I1aa1b2675a23b124666fce25807ddf65dfdcb8d5
-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 095203fbdb92..fddaf8ec7173 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -1246,13 +1246,13 @@ void ChartExport::exportLineChart( Reference< chart2::XChartType > xChartType ) if( !mbIs3DChart ) { + exportUpDownBars(xChartType); const char* marker = nSymbolType == ::com::sun::star::chart::ChartSymbolType::NONE? "0":"1"; pFS->singleElement( FSNS( XML_c, XML_marker ), XML_val, marker, FSEND ); } - exportUpDownBars(xChartType); exportAxesId( nAttachedAxis ); pFS->endElement( FSNS( XML_c, nTypeId ) ); |