diff options
author | Noel Grandin <noel@peralex.com> | 2012-09-25 15:19:10 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-10-04 21:29:32 +0200 |
commit | 9ee020af1cece4c8ad09cf6b2522647133ccffd2 (patch) | |
tree | b8c3c3a24b7a98440250ed468b99507dfa8f6d16 /chart2 | |
parent | 4aa117b81ed236bea291007f4722a8ca6fef732e (diff) |
sal_Bool -> bool in chart2
Change-Id: I60f2ead9986afb13157ac9e6a394ff02bcf4de6f
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/ChartTypeDialogController.cxx | 6 | ||||
-rw-r--r-- | chart2/source/controller/dialogs/ChartTypeDialogController.hxx | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/chart2/source/controller/dialogs/ChartTypeDialogController.cxx b/chart2/source/controller/dialogs/ChartTypeDialogController.cxx index ad05e71f9431..ceb5a150f88b 100644 --- a/chart2/source/controller/dialogs/ChartTypeDialogController.cxx +++ b/chart2/source/controller/dialogs/ChartTypeDialogController.cxx @@ -62,7 +62,7 @@ ChartTypeParameter::ChartTypeParameter() , nSplineOrder(3) , nGeometry3D(DataPointGeometry3D::CUBOID) , eThreeDLookScheme(ThreeDLookScheme_Realistic) - , bSortByXValues(sal_False) + , bSortByXValues(false) { } @@ -81,7 +81,7 @@ ChartTypeParameter::ChartTypeParameter( sal_Int32 SubTypeIndex, bool HasXAxisWit , nSplineOrder(3) , nGeometry3D(DataPointGeometry3D::CUBOID) , eThreeDLookScheme(ThreeDLookScheme_Realistic) - , bSortByXValues(sal_False) + , bSortByXValues(false) { } ChartTypeParameter::~ChartTypeParameter() @@ -218,7 +218,7 @@ void ChartTypeDialogController::adjustParameterToMainType( ChartTypeParameter& r sal_Int32 nSplineOrder = rParameter.nSplineOrder; CurveStyle eCurveStyle = rParameter.eCurveStyle; sal_Int32 nGeometry3D = rParameter.nGeometry3D; - sal_Bool bSortByXValues = rParameter.bSortByXValues; + bool bSortByXValues = rParameter.bSortByXValues; rParameter = (*aIter).second; diff --git a/chart2/source/controller/dialogs/ChartTypeDialogController.hxx b/chart2/source/controller/dialogs/ChartTypeDialogController.hxx index 0904445788d7..43ee9d836df4 100644 --- a/chart2/source/controller/dialogs/ChartTypeDialogController.hxx +++ b/chart2/source/controller/dialogs/ChartTypeDialogController.hxx @@ -82,8 +82,8 @@ public: sal_Int32 nGeometry3D; - ThreeDLookScheme eThreeDLookScheme; - sal_Bool bSortByXValues; + ThreeDLookScheme eThreeDLookScheme; + bool bSortByXValues; }; typedef ::comphelper::MakeMap< ::rtl::OUString, ChartTypeParameter > tTemplateServiceChartTypeParameterMap; |