summaryrefslogtreecommitdiffstats
path: root/chart2/source/view/axes/VAxisProperties.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-25 15:25:26 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-04 21:29:32 +0200
commitc69280ab4ef3d24d255605620ce5a4faca3ea184 (patch)
treeed82a8eb780a6a5fd54f218f232c3bfbecf15694 /chart2/source/view/axes/VAxisProperties.cxx
parentsal_Bool -> bool in chart2 (diff)
downloadcore-c69280ab4ef3d24d255605620ce5a4faca3ea184.tar.gz
core-c69280ab4ef3d24d255605620ce5a4faca3ea184.zip
sal_Bool -> bool in chart2
Change-Id: Idba76b64746fb1eec0a723a9fcbac025eda3d9a1
Diffstat (limited to 'chart2/source/view/axes/VAxisProperties.cxx')
-rw-r--r--chart2/source/view/axes/VAxisProperties.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/chart2/source/view/axes/VAxisProperties.cxx b/chart2/source/view/axes/VAxisProperties.cxx
index 049d0e9d08e1..86ec8f2ac6b9 100644
--- a/chart2/source/view/axes/VAxisProperties.cxx
+++ b/chart2/source/view/axes/VAxisProperties.cxx
@@ -430,11 +430,9 @@ void AxisLabelProperties::init( const uno::Reference< XAxis >& xAxisModel )
}
}
-sal_Bool AxisLabelProperties::getIsStaggered() const
+bool AxisLabelProperties::getIsStaggered() const
{
- if( STAGGER_ODD == eStaggering || STAGGER_EVEN == eStaggering )
- return sal_True;
- return sal_False;
+ return ( STAGGER_ODD == eStaggering || STAGGER_EVEN == eStaggering );
}
//.............................................................................