diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-03-11 22:10:30 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-03-11 22:39:38 +0100 |
commit | 7470b3ef17570581fe590a4853de59cac1be6ea5 (patch) | |
tree | c9a8824cf2b849662615e5edaa23e7cd78c0e894 | |
parent | 58fae0f715433a72d814584d97a1368f8a1b62d2 (diff) |
fix negative error bar range export, fdo#75510
Change-Id: Icca2f9fc26b15b968a940e5c73f7ad3781f75e94
-rw-r--r-- | chart2/source/tools/ErrorBar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/tools/ErrorBar.cxx b/chart2/source/tools/ErrorBar.cxx index 1469e8e5774d..c500ddd9ecd3 100644 --- a/chart2/source/tools/ErrorBar.cxx +++ b/chart2/source/tools/ErrorBar.cxx @@ -256,7 +256,7 @@ uno::Any ErrorBar::getPropertyValue(const OUString& rPropName) uno::Sequence< uno::Reference< chart2::data::XLabeledDataSequence > > aSequences = getDataSequences(); - aRange = getSourceRangeStrFromLabeledSequences( aSequences, true ); + aRange = getSourceRangeStrFromLabeledSequences( aSequences, false ); } aRet <<= aRange; |