summaryrefslogtreecommitdiff
path: root/chart2/source/controller/chartapiwrapper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-12 15:09:30 +0200
committerNoel Grandin <noel@peralex.com>2015-08-14 10:52:46 +0200
commit70a30fd179266f65500b880ccb0f87011b670fca (patch)
tree881d1723620d030171ff3de9bad2cc96f80994ed /chart2/source/controller/chartapiwrapper
parent9045d0bf35c9b4d5f6d8f791017124341abf8d4f (diff)
loplugin: defaultparams
Change-Id: I65c0ed65b20f606cf1409a3158ff1ef1e2d6cd9f
Diffstat (limited to 'chart2/source/controller/chartapiwrapper')
-rw-r--r--chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx b/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx
index 6a4e118e165e..e3c0b553e363 100644
--- a/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx
+++ b/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx
@@ -715,7 +715,7 @@ OUString WrappedErrorBarRangePositiveProperty::getValueFromSeries( const Referen
{
uno::Reference< chart2::data::XDataSequence > xSeq(
StatisticsHelper::getErrorDataSequenceFromDataSource(
- xErrorBarDataSource, true /* positive */, true /* y-error */ ));
+ xErrorBarDataSource, true /* positive */ ));
if( xSeq.is())
aRet = xSeq->getSourceRangeRepresentation();
else
@@ -782,7 +782,7 @@ OUString WrappedErrorBarRangeNegativeProperty::getValueFromSeries( const Referen
{
uno::Reference< chart2::data::XDataSequence > xSeq(
StatisticsHelper::getErrorDataSequenceFromDataSource(
- xErrorBarDataSource, false /* positive */, true /* y-error */ ));
+ xErrorBarDataSource, false /* positive */ ));
if( xSeq.is())
aRet = xSeq->getSourceRangeRepresentation();
else