diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-25 14:00:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-30 08:44:42 +0200 |
commit | 6aa35db39311dcd7965c9c9c21fcf4143a1f9b43 (patch) | |
tree | 04320eaf8c7481c1b496460624ee20ec11360ac2 /sw/inc/fmteiro.hxx | |
parent | 1417061d1b2c110e7e690523a544b58e7ffd05c0 (diff) |
sw: sal_Bool->bool
Change-Id: I324a0ffde2ddcca105451c19e7aadcfad15211d8
Diffstat (limited to 'sw/inc/fmteiro.hxx')
-rw-r--r-- | sw/inc/fmteiro.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/fmteiro.hxx b/sw/inc/fmteiro.hxx index 93586fcd3ec0..99853a0eb497 100644 --- a/sw/inc/fmteiro.hxx +++ b/sw/inc/fmteiro.hxx @@ -30,7 +30,7 @@ class SW_DLLPUBLIC SwFmtEditInReadonly : public SfxBoolItem { public: SwFmtEditInReadonly( sal_uInt16 nId = RES_EDIT_IN_READONLY, - sal_Bool bPrt = sal_False ) : SfxBoolItem( nId, bPrt ) {} + bool bPrt = false ) : SfxBoolItem( nId, bPrt ) {} /// "pure virtual methos" of SfxPoolItem virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const SAL_OVERRIDE; @@ -41,10 +41,10 @@ public: const IntlWrapper* pIntl = 0 ) const SAL_OVERRIDE; }; -inline const SwFmtEditInReadonly &SwAttrSet::GetEditInReadonly(sal_Bool bInP) const +inline const SwFmtEditInReadonly &SwAttrSet::GetEditInReadonly(bool bInP) const { return (const SwFmtEditInReadonly&)Get( RES_EDIT_IN_READONLY,bInP); } -inline const SwFmtEditInReadonly &SwFmt::GetEditInReadonly(sal_Bool bInP) const +inline const SwFmtEditInReadonly &SwFmt::GetEditInReadonly(bool bInP) const { return aSet.GetEditInReadonly(bInP); } #endif |