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/XMLTextMarkImportContext.cxx | |
parent | 42bfd486a457d327f640263ccc3ee02a380f3566 (diff) |
xmloff: sal_Bool->bool
Change-Id: I873c80baec8e70e3e8f642644563b92137571a30
Diffstat (limited to 'xmloff/source/text/XMLTextMarkImportContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLTextMarkImportContext.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/XMLTextMarkImportContext.cxx b/xmloff/source/text/XMLTextMarkImportContext.cxx index 73ee88dfdbcd..8aaa952bbba9 100644 --- a/xmloff/source/text/XMLTextMarkImportContext.cxx +++ b/xmloff/source/text/XMLTextMarkImportContext.cxx @@ -409,11 +409,11 @@ Reference<XTextContent> XMLTextMarkImportContext::CreateAndInsertMark( return 0; } -sal_Bool XMLTextMarkImportContext::FindName( +bool XMLTextMarkImportContext::FindName( SvXMLImport& rImport, const Reference<XAttributeList> & xAttrList) { - sal_Bool bNameOK = sal_False; + bool bNameOK = false; // find name attribute first const sal_Int16 nLength = xAttrList->getLength(); @@ -428,7 +428,7 @@ sal_Bool XMLTextMarkImportContext::FindName( IsXMLToken(sLocalName, XML_NAME) ) { m_sBookmarkName = xAttrList->getValueByIndex(nAttr); - bNameOK = sal_True; + bNameOK = true; } else if ( (XML_NAMESPACE_XML == nPrefix) && IsXMLToken(sLocalName, XML_ID) ) |