editeng: sal_Bool->bool
Change-Id: I12db4b88beeeabf3840116753a3c388b214428ed
This commit is contained in:
parent
bbe5d32dda
commit
fd1a348915
4 changed files with 5 additions and 5 deletions
|
@ -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 )
|
||||
{
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -34,7 +34,7 @@ class EDITENG_DLLPUBLIC SvxForbiddenRuleItem : public SfxBoolItem
|
|||
public:
|
||||
TYPEINFO();
|
||||
|
||||
SvxForbiddenRuleItem( sal_Bool bOn /*= sal_False*/,
|
||||
SvxForbiddenRuleItem( bool bOn /*= false*/,
|
||||
const sal_uInt16 nId );
|
||||
|
||||
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
|
||||
|
|
|
@ -546,7 +546,7 @@ void _InitCore()
|
|||
|
||||
aAttrTab[ RES_PARATR_SCRIPTSPACE - POOLATTR_BEGIN ] = new SvxScriptSpaceItem( sal_True, RES_PARATR_SCRIPTSPACE );
|
||||
aAttrTab[ RES_PARATR_HANGINGPUNCTUATION - POOLATTR_BEGIN ] = new SvxHangingPunctuationItem( true, RES_PARATR_HANGINGPUNCTUATION );
|
||||
aAttrTab[ RES_PARATR_FORBIDDEN_RULES - POOLATTR_BEGIN ] = new SvxForbiddenRuleItem( sal_True, RES_PARATR_FORBIDDEN_RULES );
|
||||
aAttrTab[ RES_PARATR_FORBIDDEN_RULES - POOLATTR_BEGIN ] = new SvxForbiddenRuleItem( true, RES_PARATR_FORBIDDEN_RULES );
|
||||
aAttrTab[ RES_PARATR_VERTALIGN - POOLATTR_BEGIN ] = new SvxParaVertAlignItem( 0, RES_PARATR_VERTALIGN );
|
||||
aAttrTab[ RES_PARATR_SNAPTOGRID - POOLATTR_BEGIN ] = new SvxParaGridItem( sal_True, RES_PARATR_SNAPTOGRID );
|
||||
aAttrTab[ RES_PARATR_CONNECT_BORDER - POOLATTR_BEGIN ] = new SwParaConnectBorderItem;
|
||||
|
|
Loading…
Reference in a new issue