From 6509bbee4f752b2b47df2511d5004c1a23317da5 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Tue, 10 Sep 2013 02:48:41 +0900 Subject: sal_Bool to bool Change-Id: If6d39259c29e9abcb693c9b0bdfb89b94001f928 --- xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'xmloff/source/text/XMLFootnoteConfigurationImportContext.cxx') 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 } -- cgit