summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-21 15:46:35 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:24 +0200
commitbbe5d32ddac11fc7349c335ecec588859ea81362 (patch)
tree321973fa592657e96ff41113164633996646602d /include/editeng
parent46888b6f8dd5d9e89370c92d87320df13f430fe2 (diff)
editeng: sal_Bool->bool
Change-Id: If5b8269b35983e564f1002f6ed25ca607381eea7
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/keepitem.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/keepitem.hxx b/include/editeng/keepitem.hxx
index bdb16b839e0b..85eb197c46c2 100644
--- a/include/editeng/keepitem.hxx
+++ b/include/editeng/keepitem.hxx
@@ -35,7 +35,7 @@ class EDITENG_DLLPUBLIC SvxFmtKeepItem : public SfxBoolItem
public:
TYPEINFO();
- inline SvxFmtKeepItem( const sal_Bool bKeep /*= sal_False*/,
+ inline SvxFmtKeepItem( const bool bKeep /*= false*/,
const sal_uInt16 _nWhich );
inline SvxFmtKeepItem& operator=( const SvxFmtKeepItem& rSplit );
@@ -50,7 +50,7 @@ public:
OUString &rText, const IntlWrapper * = 0 ) const;
};
-inline SvxFmtKeepItem::SvxFmtKeepItem( const sal_Bool bKeep, const sal_uInt16 _nWhich ) :
+inline SvxFmtKeepItem::SvxFmtKeepItem( const bool bKeep, const sal_uInt16 _nWhich ) :
SfxBoolItem( _nWhich, bKeep )
{}