diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-26 12:53:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-27 12:30:30 +0200 |
commit | c521f0720800a943fedffdc102aa51e09008c677 (patch) | |
tree | 7a7bad3e930599d546c5178416a671f54deba119 /include/editeng/spltitem.hxx | |
parent | 2c4621c87ed3a7b19de195c21494c9a381e72b2e (diff) |
editeng: sal_Bool->bool
Change-Id: I7da10ad3ba8017d64c723b53795348edf0e7dd6d
Diffstat (limited to 'include/editeng/spltitem.hxx')
-rw-r--r-- | include/editeng/spltitem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/spltitem.hxx b/include/editeng/spltitem.hxx index fd51c14aec7e..0c3c2281f91c 100644 --- a/include/editeng/spltitem.hxx +++ b/include/editeng/spltitem.hxx @@ -37,7 +37,7 @@ public: TYPEINFO(); ~SvxFmtSplitItem(); - inline SvxFmtSplitItem( const sal_Bool bSplit /*= sal_True*/, + inline SvxFmtSplitItem( const bool bSplit /*= true*/, const sal_uInt16 nWh ); inline SvxFmtSplitItem& operator=( const SvxFmtSplitItem& rSplit ); @@ -52,7 +52,7 @@ public: OUString &rText, const IntlWrapper * = 0 ) const; }; -inline SvxFmtSplitItem::SvxFmtSplitItem( const sal_Bool bSplit, const sal_uInt16 nWh ) : +inline SvxFmtSplitItem::SvxFmtSplitItem( const bool bSplit, const sal_uInt16 nWh ) : SfxBoolItem( nWh, bSplit ) {} |