summaryrefslogtreecommitdiff
path: root/sw/source/filter/rtf
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2012-11-03 12:18:57 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2012-11-03 12:20:23 +0900
commit2a9fd5d68304beebcffd2f6a66e65c95eb433c40 (patch)
tree56eec3b99f62e1ceb84b98e76cb9a2b2a033af5d /sw/source/filter/rtf
parentf70cf02d9073a2a7557eb01bac401213d5c11314 (diff)
sal_Bool to bool
Change-Id: I35412e2d2e36e3eabdff2a6692bf6edc68a2d724
Diffstat (limited to 'sw/source/filter/rtf')
-rw-r--r--sw/source/filter/rtf/rtfnum.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/rtf/rtfnum.cxx b/sw/source/filter/rtf/rtfnum.cxx
index 74f00b764d87..61f37f002f1c 100644
--- a/sw/source/filter/rtf/rtfnum.cxx
+++ b/sw/source/filter/rtf/rtfnum.cxx
@@ -364,10 +364,10 @@ void SwRTFParser::ReadListTable()
lcl_ExpandNumFmts( *pCurRule );
String sTmp(rtl::OUString(RTF_NUMRULE_NAME " 1"));
- aEntry.nListDocPos = pDoc->MakeNumRule( sTmp, 0, sal_False, SvxNumberFormat::LABEL_ALIGNMENT );
+ aEntry.nListDocPos = pDoc->MakeNumRule( sTmp, 0, false, SvxNumberFormat::LABEL_ALIGNMENT );
pCurRule = pDoc->GetNumRuleTbl()[ aEntry.nListDocPos ];
// #i91400#
- pCurRule->SetName( pDoc->GetUniqueNumRuleName( &sTmp, sal_False ),
+ pCurRule->SetName( pDoc->GetUniqueNumRuleName( &sTmp, false ),
*pDoc );
pCurRule->SetAutoRule( sal_False );
@@ -567,7 +567,7 @@ void SwRTFParser::ReadListOverrideTable()
aEntry.nListDocPos = pDoc->MakeNumRule( sTmp, pRule );
pRule = pDoc->GetNumRuleTbl()[ aEntry.nListDocPos ];
// #i91400#
- pRule->SetName( pDoc->GetUniqueNumRuleName( &sTmp, sal_False ),
+ pRule->SetName( pDoc->GetUniqueNumRuleName( &sTmp, false ),
*pDoc );
pRule->SetAutoRule( sal_False );
@@ -818,7 +818,7 @@ SwNumRule *SwRTFParser::ReadNumSecLevel( int nToken )
aListArr.push_back( aEntry );
pCurRule = pDoc->GetNumRuleTbl()[ aEntry.nListDocPos ];
// #i91400#
- pCurRule->SetName( pDoc->GetUniqueNumRuleName( &sTmp, sal_False ), *pDoc );
+ pCurRule->SetName( pDoc->GetUniqueNumRuleName( &sTmp, false ), *pDoc );
pCurRule->SetAutoRule( sal_False );
pCurRule->SetContinusNum( bContinus );