summaryrefslogtreecommitdiff
path: root/editeng
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 /editeng
parentef16d954c27da9da99de18f67daa813cb48d02b9 (diff)
editeng: sal_Bool->bool
Change-Id: Id309a574831dd46bce47009eb8c4879d26c3a332
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/frmitems.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/items/frmitems.cxx b/editeng/source/items/frmitems.cxx
index 19f89d7a7f62..e847acdae44d 100644
--- a/editeng/source/items/frmitems.cxx
+++ b/editeng/source/items/frmitems.cxx
@@ -1162,7 +1162,7 @@ SfxPoolItem* SvxOpaqueItem::Create( SvStream& rStrm, sal_uInt16 ) const
{
sal_Int8 bIsOpaque;
rStrm.ReadSChar( bIsOpaque );
- return new SvxOpaqueItem( Which(), sal_Bool( bIsOpaque != 0 ) );
+ return new SvxOpaqueItem( Which(), bIsOpaque != 0 );
}