diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-03-11 22:10:30 +0100 |
---|---|---|
committer | Kohei Yoshida <libreoffice@kohei.us> | 2014-03-11 17:50:45 -0500 |
commit | e687941b2b5af347a99707783302c0d03b6a5c55 (patch) | |
tree | 1e2b82512e0fe2d488a95ba719a0da74c9ab03e7 | |
parent | 5d534ad732a8500466f495a527ab63322361f47a (diff) |
fix negative error bar range export, fdo#75510
Change-Id: Icca2f9fc26b15b968a940e5c73f7ad3781f75e94
(cherry picked from commit 7470b3ef17570581fe590a4853de59cac1be6ea5)
Reviewed-on: https://gerrit.libreoffice.org/8536
Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
Tested-by: Kohei Yoshida <libreoffice@kohei.us>
-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 932efbc7bb17..805b4e6e0ac7 100644 --- a/chart2/source/tools/ErrorBar.cxx +++ b/chart2/source/tools/ErrorBar.cxx @@ -254,7 +254,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; |