summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLIndexBibliographyEntryContext.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-07 16:42:18 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:31 +0200
commit8a81f542a6ca566661305c53899b7e422cbaa432 (patch)
treeb70ce405aab1c29856fa824493a664ba8ba27596 /xmloff/source/text/XMLIndexBibliographyEntryContext.cxx
parent42bfd486a457d327f640263ccc3ee02a380f3566 (diff)
xmloff: sal_Bool->bool
Change-Id: I873c80baec8e70e3e8f642644563b92137571a30
Diffstat (limited to 'xmloff/source/text/XMLIndexBibliographyEntryContext.cxx')
-rw-r--r--xmloff/source/text/XMLIndexBibliographyEntryContext.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/XMLIndexBibliographyEntryContext.cxx b/xmloff/source/text/XMLIndexBibliographyEntryContext.cxx
index 316f375dd731..9ea51eec733f 100644
--- a/xmloff/source/text/XMLIndexBibliographyEntryContext.cxx
+++ b/xmloff/source/text/XMLIndexBibliographyEntryContext.cxx
@@ -51,7 +51,7 @@ XMLIndexBibliographyEntryContext::XMLIndexBibliographyEntryContext(
rTemplate,
nPrfx, rLocalName),
nBibliographyInfo(BibliographyDataField::IDENTIFIER),
- bBibliographyInfoOK(sal_False)
+ bBibliographyInfoOK(false)
{
}
@@ -113,7 +113,7 @@ void XMLIndexBibliographyEntryContext::StartElement(
if ( IsXMLToken( sLocalName, XML_STYLE_NAME ) )
{
sCharStyleName = xAttrList->getValueByIndex(nAttr);
- bCharStyleNameOK = sal_True;
+ bCharStyleNameOK = true;
}
else if ( IsXMLToken( sLocalName, XML_BIBLIOGRAPHY_DATA_FIELD ) )
{
@@ -123,7 +123,7 @@ void XMLIndexBibliographyEntryContext::StartElement(
aBibliographyDataFieldMap))
{
nBibliographyInfo = nTmp;
- bBibliographyInfoOK = sal_True;
+ bBibliographyInfoOK = true;
}
}
}