[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - chart2/source
Markus Mohrhard
markus.mohrhard at collabora.co.uk
Tue Mar 11 15:51:14 PDT 2014
chart2/source/tools/ErrorBar.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit e687941b2b5af347a99707783302c0d03b6a5c55
Author: Markus Mohrhard <markus.mohrhard at collabora.co.uk>
Date: Tue Mar 11 22:10:30 2014 +0100
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 at kohei.us>
Tested-by: Kohei Yoshida <libreoffice at kohei.us>
diff --git a/chart2/source/tools/ErrorBar.cxx b/chart2/source/tools/ErrorBar.cxx
index 932efbc..805b4e6 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;
More information about the Libreoffice-commits
mailing list