summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-03-11 22:10:30 +0100
committerAndras Timar <andras.timar@collabora.com>2014-04-08 14:42:18 +0200
commitebc32b391b9c7f4fdc9f8450c416608de0acbb83 (patch)
treef8b144c5b542f61ca99e7f7b4f99068f36453a01
parentd49f38cd2a6e86b4459b5cb2f70a94a68cec0d1e (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.cxx2
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;