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/XMLFootnoteImportContext.cxx | |
parent | 396534403b5d1e399ff1438df4c85519c900199d (diff) |
sal_Bool to bool
Change-Id: If6d39259c29e9abcb693c9b0bdfb89b94001f928
Diffstat (limited to 'xmloff/source/text/XMLFootnoteImportContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLFootnoteImportContext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/text/XMLFootnoteImportContext.cxx b/xmloff/source/text/XMLFootnoteImportContext.cxx index f1e29cf92730..5ea7c5480380 100644 --- a/xmloff/source/text/XMLFootnoteImportContext.cxx +++ b/xmloff/source/text/XMLFootnoteImportContext.cxx @@ -85,7 +85,7 @@ void XMLFootnoteImportContext::StartElement( if( xFactory.is() ) { // create endnote or footnote - sal_Bool bIsEndnote = sal_False; + bool bIsEndnote = false; sal_Int16 nLength = xAttrList->getLength(); for(sal_Int16 nAttr1 = 0; nAttr1 < nLength; nAttr1++) { @@ -98,7 +98,7 @@ void XMLFootnoteImportContext::StartElement( { const OUString& rValue = xAttrList->getValueByIndex( nAttr1 ); if( IsXMLToken( rValue, XML_ENDNOTE ) ) - bIsEndnote = sal_True; + bIsEndnote = true; break; } } |