summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-25 16:12:39 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:27 +0200
commitb8eaa2b78235930f2875d5a757dcd69483ab3e7a (patch)
tree5f45bf2bc1f89126233812f9ce25446c8c643926 /editeng
parentaf2f568cc7efffb8d67db7b5c0bc917326ac69b2 (diff)
editeng: sal_Bool->bool
Change-Id: Ic4dec17e879e6e16c7d6c5e184288a629872ce84
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/paraitem.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx
index 7c9d6652151e..eff85f121a5b 100644
--- a/editeng/source/items/paraitem.cxx
+++ b/editeng/source/items/paraitem.cxx
@@ -78,7 +78,7 @@ TYPEINIT1_FACTORY(SvxScriptSpaceItem, SfxBoolItem, new SvxScriptSpaceItem(sal_Fa
TYPEINIT1_FACTORY(SvxHangingPunctuationItem, SfxBoolItem, new SvxHangingPunctuationItem(false, 0));
TYPEINIT1_FACTORY(SvxForbiddenRuleItem, SfxBoolItem, new SvxForbiddenRuleItem(false, 0));
TYPEINIT1_FACTORY(SvxParaVertAlignItem, SfxUInt16Item, new SvxParaVertAlignItem(0, 0));
-TYPEINIT1_FACTORY(SvxParaGridItem, SfxBoolItem, new SvxParaGridItem(sal_True, 0));
+TYPEINIT1_FACTORY(SvxParaGridItem, SfxBoolItem, new SvxParaGridItem(true, 0));
@@ -1619,7 +1619,7 @@ bool SvxParaVertAlignItem::operator==( const SfxPoolItem& rItem ) const
}
-SvxParaGridItem::SvxParaGridItem( sal_Bool bOn, const sal_uInt16 nId )
+SvxParaGridItem::SvxParaGridItem( bool bOn, const sal_uInt16 nId )
: SfxBoolItem( nId, bOn )
{
}