summaryrefslogtreecommitdiff
path: root/chart2/source/model/main/CartesianCoordinateSystem.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-05 08:24:32 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-05 11:30:13 +0000
commita7ec6c29aaed1ed7dd8713a9b8698d12181c40a3 (patch)
treecb7e36caf97f4f63a1a5448cb3cf877740053841 /chart2/source/model/main/CartesianCoordinateSystem.cxx
parent9866efe3e5a670bab54d931be31e1989aeb382a7 (diff)
loplugin:constantparam in chart2
Change-Id: I9adcf4516107aaa960463be13090c2ac15685e09 Reviewed-on: https://gerrit.libreoffice.org/23833 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'chart2/source/model/main/CartesianCoordinateSystem.cxx')
-rw-r--r--chart2/source/model/main/CartesianCoordinateSystem.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/chart2/source/model/main/CartesianCoordinateSystem.cxx b/chart2/source/model/main/CartesianCoordinateSystem.cxx
index 4e1409f6d7ae..3e49456885ad 100644
--- a/chart2/source/model/main/CartesianCoordinateSystem.cxx
+++ b/chart2/source/model/main/CartesianCoordinateSystem.cxx
@@ -47,9 +47,8 @@ namespace chart
// explicit
CartesianCoordinateSystem::CartesianCoordinateSystem(
const uno::Reference< uno::XComponentContext > & xContext,
- sal_Int32 nDimensionCount /* = 2 */,
- bool bSwapXAndYAxis /* = sal_False */ ) :
- BaseCoordinateSystem( xContext, nDimensionCount, bSwapXAndYAxis )
+ sal_Int32 nDimensionCount /* = 2 */ ) :
+ BaseCoordinateSystem( xContext, nDimensionCount, false/*bSwapXAndYAxis*/ )
{}
CartesianCoordinateSystem::CartesianCoordinateSystem(
@@ -115,7 +114,7 @@ css::uno::Sequence< OUString > SAL_CALL CartesianCoordinateSystem::getSupportedS
CartesianCoordinateSystem2d::CartesianCoordinateSystem2d(
const uno::Reference< uno::XComponentContext > & xContext ) :
- CartesianCoordinateSystem( xContext, 2, false )
+ CartesianCoordinateSystem( xContext, 2 )
{}
CartesianCoordinateSystem2d::~CartesianCoordinateSystem2d()
@@ -158,7 +157,7 @@ css::uno::Sequence< OUString > SAL_CALL CartesianCoordinateSystem2d::getSupporte
CartesianCoordinateSystem3d::CartesianCoordinateSystem3d(
const uno::Reference< uno::XComponentContext > & xContext ) :
- CartesianCoordinateSystem( xContext, 3, false )
+ CartesianCoordinateSystem( xContext, 3 )
{}
CartesianCoordinateSystem3d::~CartesianCoordinateSystem3d()