summaryrefslogtreecommitdiffstats
path: root/include/editeng/opaqitem.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-25 12:14:07 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:25 +0200
commit127f62ccbdf090e2b5fc4d92c30a9c152b60f0e0 (patch)
tree48d2b24a5862c5a7788d5b6f3c691c6af505503c /include/editeng/opaqitem.hxx
parentediteng: sal_Bool->bool (diff)
downloadcore-127f62ccbdf090e2b5fc4d92c30a9c152b60f0e0.tar.gz
core-127f62ccbdf090e2b5fc4d92c30a9c152b60f0e0.zip
editeng: sal_Bool->bool
Change-Id: Id309a574831dd46bce47009eb8c4879d26c3a332
Diffstat (limited to 'include/editeng/opaqitem.hxx')
-rw-r--r--include/editeng/opaqitem.hxx4
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 )
{}