diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-25 12:14:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-27 12:30:25 +0200 |
commit | 127f62ccbdf090e2b5fc4d92c30a9c152b60f0e0 (patch) | |
tree | 48d2b24a5862c5a7788d5b6f3c691c6af505503c /include | |
parent | ef16d954c27da9da99de18f67daa813cb48d02b9 (diff) |
editeng: sal_Bool->bool
Change-Id: Id309a574831dd46bce47009eb8c4879d26c3a332
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/opaqitem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/opaqitem.hxx b/include/editeng/opaqitem.hxx index d449eba7f461..b1aa1459d52c 100644 --- a/include/editeng/opaqitem.hxx +++ b/include/editeng/opaqitem.hxx @@ -37,7 +37,7 @@ class EDITENG_DLLPUBLIC SvxOpaqueItem : public SfxBoolItem public: TYPEINFO(); - explicit SvxOpaqueItem( const sal_uInt16 nId , const sal_Bool bOpa = sal_True ); + explicit SvxOpaqueItem( const sal_uInt16 nId , const bool bOpa = true ); inline SvxOpaqueItem &operator=( const SvxOpaqueItem &rCpy ); // "pure virtual Methods" from SfxPoolItem @@ -51,7 +51,7 @@ public: OUString &rText, const IntlWrapper * = 0 ) const; }; -inline SvxOpaqueItem::SvxOpaqueItem( const sal_uInt16 nId, const sal_Bool bOpa ) +inline SvxOpaqueItem::SvxOpaqueItem( const sal_uInt16 nId, const bool bOpa ) : SfxBoolItem( nId, bOpa ) {} |