summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-21 10:01:27 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 12:19:24 +0200
commita32ed92c953b6ad39a993c530d43f5d91c34be79 (patch)
tree4fa7f1f77a658f450bb8fbc7ae6fe52bd4ee7fc1 /include/editeng
parent239820a7ac9b6e9800973270142bcf7f7a8db322 (diff)
editeng: sal_Bool->bool
Change-Id: I64cde75157fbdcda6ac92ca4064e6ab8197114c1
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/hyphenzoneitem.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/editeng/hyphenzoneitem.hxx b/include/editeng/hyphenzoneitem.hxx
index 84bcec055b9a..7d7e04b37f75 100644
--- a/include/editeng/hyphenzoneitem.hxx
+++ b/include/editeng/hyphenzoneitem.hxx
@@ -34,8 +34,8 @@ class SvXMLUnitConverter;
class EDITENG_DLLPUBLIC SvxHyphenZoneItem : public SfxPoolItem
{
- sal_Bool bHyphen: 1;
- sal_Bool bPageEnd: 1;
+ bool bHyphen : 1;
+ bool bPageEnd : 1;
sal_uInt8 nMinLead;
sal_uInt8 nMinTrail;
sal_uInt8 nMaxHyphens;
@@ -45,7 +45,7 @@ class EDITENG_DLLPUBLIC SvxHyphenZoneItem : public SfxPoolItem
public:
TYPEINFO();
- SvxHyphenZoneItem( const sal_Bool bHyph /*= sal_False*/,
+ SvxHyphenZoneItem( const bool bHyph /*= false*/,
const sal_uInt16 nId );
// "pure virtual Methods" from SfxPoolItem
@@ -62,11 +62,11 @@ public:
virtual SfxPoolItem* Create(SvStream &, sal_uInt16) const;
virtual SvStream& Store(SvStream &, sal_uInt16 nItemVersion ) const;
- inline void SetHyphen( const sal_Bool bNew ) { bHyphen = bNew; }
- inline sal_Bool IsHyphen() const { return bHyphen; }
+ inline void SetHyphen( const bool bNew ) { bHyphen = bNew; }
+ inline bool IsHyphen() const { return bHyphen; }
- inline void SetPageEnd( const sal_Bool bNew ) { bPageEnd = bNew; }
- inline sal_Bool IsPageEnd() const { return bPageEnd; }
+ inline void SetPageEnd( const bool bNew ) { bPageEnd = bNew; }
+ inline bool IsPageEnd() const { return bPageEnd; }
inline sal_uInt8 &GetMinLead() { return nMinLead; }
inline sal_uInt8 GetMinLead() const { return nMinLead; }