summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-21 16:06:28 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 12:30:25 +0200
commitfd1a348915fe90014a2f2ef72213bc6159aaa7a4 (patch)
tree4e1a3c2d1179cf2cd370cbe4b3f00561565a17f3 /editeng
parentbbe5d32ddac11fc7349c335ecec588859ea81362 (diff)
editeng: sal_Bool->bool
Change-Id: I12db4b88beeeabf3840116753a3c388b214428ed
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/items/paraitem.cxx4
-rw-r--r--editeng/source/rtf/rtfitem.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/items/paraitem.cxx b/editeng/source/items/paraitem.cxx
index 9c0748d0d880..7c9d6652151e 100644
--- a/editeng/source/items/paraitem.cxx
+++ b/editeng/source/items/paraitem.cxx
@@ -76,7 +76,7 @@ TYPEINIT1_FACTORY(SvxFmtSplitItem, SfxBoolItem, new SvxFmtSplitItem(sal_False, 0
TYPEINIT1_FACTORY(SvxPageModelItem, SfxStringItem, new SvxPageModelItem(0));
TYPEINIT1_FACTORY(SvxScriptSpaceItem, SfxBoolItem, new SvxScriptSpaceItem(sal_False, 0));
TYPEINIT1_FACTORY(SvxHangingPunctuationItem, SfxBoolItem, new SvxHangingPunctuationItem(false, 0));
-TYPEINIT1_FACTORY(SvxForbiddenRuleItem, SfxBoolItem, new SvxForbiddenRuleItem(sal_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));
@@ -1477,7 +1477,7 @@ SfxItemPresentation SvxHangingPunctuationItem::GetPresentation(
SvxForbiddenRuleItem::SvxForbiddenRuleItem(
- sal_Bool bOn, const sal_uInt16 nId )
+ bool bOn, const sal_uInt16 nId )
: SfxBoolItem( nId, bOn )
{
}
diff --git a/editeng/source/rtf/rtfitem.cxx b/editeng/source/rtf/rtfitem.cxx
index 6f483f3edeb8..69c273437806 100644
--- a/editeng/source/rtf/rtfitem.cxx
+++ b/editeng/source/rtf/rtfitem.cxx
@@ -503,7 +503,7 @@ void SvxRTFParser::ReadAttr( int nToken, SfxItemSet* pSet )
case RTF_NOCWRAP:
if( PARDID->nForbRule )
{
- pSet->Put( SvxForbiddenRuleItem( sal_False,
+ pSet->Put( SvxForbiddenRuleItem( false,
PARDID->nForbRule ));
}
break;