summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLTextListBlockContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/XMLTextListBlockContext.cxx')
-rw-r--r--xmloff/source/text/XMLTextListBlockContext.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/text/XMLTextListBlockContext.cxx b/xmloff/source/text/XMLTextListBlockContext.cxx
index 75c8602be2a9..9e6c716ff564 100644
--- a/xmloff/source/text/XMLTextListBlockContext.cxx
+++ b/xmloff/source/text/XMLTextListBlockContext.cxx
@@ -49,14 +49,14 @@ XMLTextListBlockContext::XMLTextListBlockContext(
sal_uInt16 nPrfx,
const OUString& rLName,
const Reference< xml::sax::XAttributeList > & xAttrList,
- const sal_Bool bRestartNumberingAtSubList )
+ const bool bRestartNumberingAtSubList )
: SvXMLImportContext( rImport, nPrfx, rLName )
, mrTxtImport( rTxtImp )
, msListStyleName()
, mxParentListBlock( )
, mnLevel( 0 )
-, mbRestartNumbering( sal_False )
-, mbSetDefaults( sal_False )
+, mbRestartNumbering( false )
+, mbSetDefaults( false )
, msListId()
, msContinueListId()
{
@@ -174,7 +174,7 @@ XMLTextListBlockContext::XMLTextListBlockContext(
!mbRestartNumbering &&
rTextListsHelper.IsListProcessed( msListId ) )
{
- mbRestartNumbering = sal_True;
+ mbRestartNumbering = true;
}
}
}
@@ -263,11 +263,11 @@ SvXMLImportContext *XMLTextListBlockContext::CreateChildContext(
const SvXMLTokenMap& rTokenMap =
mrTxtImport.GetTextListBlockElemTokenMap();
- sal_Bool bHeader = sal_False;
+ bool bHeader = false;
switch( rTokenMap.Get( nPrefix, rLocalName ) )
{
case XML_TOK_TEXT_LIST_HEADER:
- bHeader = sal_True;
+ bHeader = true;
//fall-through
case XML_TOK_TEXT_LIST_ITEM:
pContext = new XMLTextListItemContext( GetImport(), mrTxtImport,