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/XMLIndexTableSourceContext.cxx | |
parent | 42bfd486a457d327f640263ccc3ee02a380f3566 (diff) |
xmloff: sal_Bool->bool
Change-Id: I873c80baec8e70e3e8f642644563b92137571a30
Diffstat (limited to 'xmloff/source/text/XMLIndexTableSourceContext.cxx')
-rw-r--r-- | xmloff/source/text/XMLIndexTableSourceContext.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/text/XMLIndexTableSourceContext.cxx b/xmloff/source/text/XMLIndexTableSourceContext.cxx index ee4d198b891c..f1fa32e23abe 100644 --- a/xmloff/source/text/XMLIndexTableSourceContext.cxx +++ b/xmloff/source/text/XMLIndexTableSourceContext.cxx @@ -59,14 +59,14 @@ XMLIndexTableSourceContext::XMLIndexTableSourceContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, Reference<XPropertySet> & rPropSet) : XMLIndexSourceBaseContext(rImport, nPrfx, rLocalName, - rPropSet, sal_False) + rPropSet, false) , sCreateFromLabels(sAPI_CreateFromLabels) , sLabelCategory(sAPI_LabelCategory) , sLabelDisplayType(sAPI_LabelDisplayType) , nDisplayFormat(0) - , bSequenceOK(sal_False) - , bDisplayFormatOK(sal_False) - , bUseCaption(sal_True) + , bSequenceOK(false) + , bDisplayFormatOK(false) + , bUseCaption(true) { } @@ -105,7 +105,7 @@ void XMLIndexTableSourceContext::ProcessAttribute( case XML_TOK_INDEXSOURCE_SEQUENCE_NAME: sSequence = rValue; - bSequenceOK = sal_True; + bSequenceOK = true; break; case XML_TOK_INDEXSOURCE_SEQUENCE_FORMAT: @@ -115,7 +115,7 @@ void XMLIndexTableSourceContext::ProcessAttribute( lcl_aReferenceTypeTokenMap)) { nDisplayFormat = nTmp; - bDisplayFormatOK = sal_True; + bDisplayFormatOK = true; } break; } |