summaryrefslogtreecommitdiffstats
path: root/xmloff/source/text/XMLIndexSourceBaseContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/XMLIndexSourceBaseContext.cxx')
-rw-r--r--xmloff/source/text/XMLIndexSourceBaseContext.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/source/text/XMLIndexSourceBaseContext.cxx b/xmloff/source/text/XMLIndexSourceBaseContext.cxx
index caab1942f39a..f3019851d32d 100644
--- a/xmloff/source/text/XMLIndexSourceBaseContext.cxx
+++ b/xmloff/source/text/XMLIndexSourceBaseContext.cxx
@@ -152,13 +152,13 @@ XMLIndexSourceBaseContext::XMLIndexSourceBaseContext(
sal_uInt16 nPrfx,
const OUString& rLocalName,
Reference<XPropertySet> & rPropSet,
- sal_Bool bLevelFormats)
+ bool bLevelFormats)
: SvXMLImportContext(rImport, nPrfx, rLocalName)
, sCreateFromChapter(sAPI_CreateFromChapter)
, sIsRelativeTabstops(sAPI_IsRelativeTabstops)
, bUseLevelFormats(bLevelFormats)
-, bChapterIndex(sal_False)
-, bRelativeTabs(sal_True)
+, bChapterIndex(false)
+, bRelativeTabs(true)
, rIndexPropertySet(rPropSet)
{
}
@@ -197,7 +197,7 @@ void XMLIndexSourceBaseContext::ProcessAttribute(
case XML_TOK_INDEXSOURCE_INDEX_SCOPE:
if ( IsXMLToken( rValue, XML_CHAPTER ) )
{
- bChapterIndex = sal_True;
+ bChapterIndex = true;
}
break;