diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-09-10 02:48:41 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-09-10 02:50:04 +0900 |
commit | 6509bbee4f752b2b47df2511d5004c1a23317da5 (patch) | |
tree | c1d26763aa3ca4fe9af12901e7870a342705cfe8 /xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx | |
parent | 396534403b5d1e399ff1438df4c85519c900199d (diff) |
sal_Bool to bool
Change-Id: If6d39259c29e9abcb693c9b0bdfb89b94001f928
Diffstat (limited to 'xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx b/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx index fde5711b9ae3..b202a18ea00b 100644 --- a/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx +++ b/xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx @@ -59,7 +59,7 @@ class XMLFootnoteConfigHelper : public SvXMLImportContext { OUStringBuffer sBuffer; XMLFootnoteConfigurationImportContext& rConfig; - sal_Bool bIsBegin; + bool bIsBegin; public: TYPEINFO(); @@ -69,7 +69,7 @@ public: sal_uInt16 nPrfx, const OUString& rLName, XMLFootnoteConfigurationImportContext& rConfigImport, - sal_Bool bBegin); + bool bBegin); virtual void EndElement(); @@ -83,7 +83,7 @@ XMLFootnoteConfigHelper::XMLFootnoteConfigHelper( sal_uInt16 nPrfx, const OUString& rLName, XMLFootnoteConfigurationImportContext& rConfigImport, - sal_Bool bBegin) + bool bBegin) : SvXMLImportContext(rImport, nPrfx, rLName) , sBuffer() , rConfig(rConfigImport) @@ -305,14 +305,14 @@ SvXMLImportContext *XMLFootnoteConfigurationImportContext::CreateChildContext( { pContext = new XMLFootnoteConfigHelper(GetImport(), nPrefix, rLocalName, - *this, sal_False); + *this, false); } else if ( IsXMLToken( rLocalName, XML_FOOTNOTE_CONTINUATION_NOTICE_BACKWARD ) ) { pContext = new XMLFootnoteConfigHelper(GetImport(), nPrefix, rLocalName, - *this, sal_True); + *this, true); } // else: default context } |