diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-07 16:42:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-15 09:02:31 +0200 |
commit | 8a81f542a6ca566661305c53899b7e422cbaa432 (patch) | |
tree | b70ce405aab1c29856fa824493a664ba8ba27596 /xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx | |
parent | 42bfd486a457d327f640263ccc3ee02a380f3566 (diff) |
xmloff: sal_Bool->bool
Change-Id: I873c80baec8e70e3e8f642644563b92137571a30
Diffstat (limited to 'xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx b/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx index 7a632f328ad0..ef326bb22282 100644 --- a/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx +++ b/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx @@ -140,8 +140,8 @@ XMLFootnoteConfigurationImportContext::XMLFootnoteConfigurationImportContext( , pAttrTokenMap(NULL) , nOffset(0) , nNumbering(FootnoteNumbering::PER_PAGE) -, bPosition(sal_False) -, bIsEndnote(sal_False) +, bPosition(false) +, bIsEndnote(false) { sal_Int16 nLength = xAttrList->getLength(); for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++) @@ -156,7 +156,7 @@ XMLFootnoteConfigurationImportContext::XMLFootnoteConfigurationImportContext( const OUString& rValue = xAttrList->getValueByIndex( nAttr ); if( IsXMLToken( rValue, XML_ENDNOTE ) ) { - bIsEndnote = sal_True; + bIsEndnote = true; SetFamily( XML_STYLE_FAMILY_TEXT_FOOTNOTECONFIG ); } break; |