summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 15:06:39 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:30 +0200
commit4e808f63290e3abade2a7dcea11209af56855b31 (patch)
tree9b4dd2c5d1f6b0507486586549c2ae6c22756e5b /include/editeng
parent015b80e852f2292fc12f3e209726178f05d95e3c (diff)
editeng: sal_Bool->bool
Change-Id: I5ed4b1bdaba917d420666b15ec0b7060370f1059
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/ulspitem.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/editeng/ulspitem.hxx b/include/editeng/ulspitem.hxx
index 46e4a31e1b13..ed33eda6d818 100644
--- a/include/editeng/ulspitem.hxx
+++ b/include/editeng/ulspitem.hxx
@@ -36,7 +36,7 @@ class EDITENG_DLLPUBLIC SvxULSpaceItem : public SfxPoolItem
{
sal_uInt16 nUpper; // Upper space
sal_uInt16 nLower; // Lower space
- sal_Bool bContext; // Contextual spacing?
+ bool bContext; // Contextual spacing?
sal_uInt16 nPropUpper, nPropLower; // relative or absolute (=100%)
public:
TYPEINFO();
@@ -69,13 +69,13 @@ public:
void SetUpperValue( const sal_uInt16 nU ) { nUpper = nU; }
void SetLowerValue( const sal_uInt16 nL ) { nLower = nL; }
- void SetContextValue( const sal_Bool bC ) { bContext = bC; }
- void SetPropUpper( const sal_uInt16 nU ) { nPropUpper = nU; }
- void SetPropLower( const sal_uInt16 nL ) { nPropLower = nL; }
+ void SetContextValue( const bool bC ) { bContext = bC; }
+ void SetPropUpper( const sal_uInt16 nU ) { nPropUpper = nU; }
+ void SetPropLower( const sal_uInt16 nL ) { nPropLower = nL; }
sal_uInt16 GetUpper() const { return nUpper; }
sal_uInt16 GetLower() const { return nLower; }
- sal_Bool GetContext() const { return bContext; }
+ bool GetContext() const { return bContext; }
sal_uInt16 GetPropUpper() const { return nPropUpper; }
sal_uInt16 GetPropLower() const { return nPropLower; }
};