diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-21 17:29:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-21 17:29:40 +0200 |
commit | 783419657cda0565716d363928c8cf5ac5035f8c (patch) | |
tree | 020ed01c4cdbcba17191cd7ef75e5aff25a379a6 /xmloff/source/text/XMLIndexTemplateContext.hxx | |
parent | 8c423eeb49606087243fb6bbf31c0981c55dc773 (diff) |
loplugin:salbool: sal_Bool[] -> bool[]
Change-Id: I3c5bf7a53c9ae173f8fce885ecf022f092aa43a9
Diffstat (limited to 'xmloff/source/text/XMLIndexTemplateContext.hxx')
-rw-r--r-- | xmloff/source/text/XMLIndexTemplateContext.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/xmloff/source/text/XMLIndexTemplateContext.hxx b/xmloff/source/text/XMLIndexTemplateContext.hxx index a9b3983899a8..24dbd85a0a3a 100644 --- a/xmloff/source/text/XMLIndexTemplateContext.hxx +++ b/xmloff/source/text/XMLIndexTemplateContext.hxx @@ -40,23 +40,23 @@ struct SvXMLEnumMapEntry; // TOC and user defined index: extern const SvXMLEnumMapEntry aSvLevelNameTOCMap[]; extern const sal_Char* aLevelStylePropNameTOCMap[]; -extern const sal_Bool aAllowedTokenTypesTOC[]; -extern const sal_Bool aAllowedTokenTypesUser[]; +extern const bool aAllowedTokenTypesTOC[]; +extern const bool aAllowedTokenTypesUser[]; // alphabetical index: extern const SvXMLEnumMapEntry aLevelNameAlphaMap[]; extern const sal_Char* aLevelStylePropNameAlphaMap[]; -extern const sal_Bool aAllowedTokenTypesAlpha[]; +extern const bool aAllowedTokenTypesAlpha[]; // bibliography: extern const SvXMLEnumMapEntry aLevelNameBibliographyMap[]; extern const sal_Char* aLevelStylePropNameBibliographyMap[]; -extern const sal_Bool aAllowedTokenTypesBibliography[]; +extern const bool aAllowedTokenTypesBibliography[]; // table, illustration and object tables: extern const SvXMLEnumMapEntry* aLevelNameTableMap; // NULL: no outline-level extern const sal_Char* aLevelStylePropNameTableMap[]; -extern const sal_Bool aAllowedTokenTypesTable[]; +extern const bool aAllowedTokenTypesTable[]; /** @@ -72,7 +72,7 @@ class XMLIndexTemplateContext : public SvXMLImportContext const SvXMLEnumMapEntry* pOutlineLevelNameMap; enum ::xmloff::token::XMLTokenEnum eOutlineLevelAttrName; const sal_Char** pOutlineLevelStylePropMap; - const sal_Bool* pAllowedTokenTypesMap; + const bool* pAllowedTokenTypesMap; sal_Int32 nOutlineLevel; bool bStyleNameOK; @@ -117,7 +117,7 @@ public: const SvXMLEnumMapEntry* aLevelNameMap, enum ::xmloff::token::XMLTokenEnum eLevelAttrName, const sal_Char** aLevelStylePropNameMap, - const sal_Bool* aAllowedTokenTypes, + const bool* aAllowedTokenTypes, bool bTOC=false); virtual ~XMLIndexTemplateContext(); |