summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-03-11 22:10:30 +0100
committerKohei Yoshida <libreoffice@kohei.us>2014-03-11 17:50:09 -0500
commit787a663d8579921af4176feeb265dea8aac4d50c (patch)
tree39320be5b463e4d8da75424cc29ecf1ba61600ac /chart2
parent65909e07763e80031bfeb7bb3170e6c3b0029065 (diff)
fix negative error bar range export, fdo#75510
Change-Id: Icca2f9fc26b15b968a940e5c73f7ad3781f75e94 (cherry picked from commit 7470b3ef17570581fe590a4853de59cac1be6ea5) Reviewed-on: https://gerrit.libreoffice.org/8535 Reviewed-by: Kohei Yoshida <libreoffice@kohei.us> Tested-by: Kohei Yoshida <libreoffice@kohei.us>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/tools/ErrorBar.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/tools/ErrorBar.cxx b/chart2/source/tools/ErrorBar.cxx
index 3e305b94506a..cd55836eea29 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;