diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-03-26 22:50:57 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-03-26 23:58:43 +0100 |
commit | a1f85043237b6b02549b69aad90d687c0d4e08fc (patch) | |
tree | f48712cd66a6e8ea18a5c2a371ad1d9b24b56603 /oox | |
parent | ec2b4ea9b4525b4470f2eace64e43cf30195ad92 (diff) |
support negative overlap
Change-Id: I1ec67a8697148d650f56650c6320964ac39dfedf
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 0d30e29d1b42..b38f308e45a5 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -1364,8 +1364,7 @@ void ChartExport::exportBarChart( Reference< chart2::XChartType > xChartType ) if( aBarPositionSequence.getLength() ) { sal_Int32 nOverlap = aBarPositionSequence[0]; - if( nOverlap > 0 ) - pFS->singleElement( FSNS( XML_c, XML_overlap ), + pFS->singleElement( FSNS( XML_c, XML_overlap ), XML_val, I32S( nOverlap ), FSEND ); } |