diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-28 14:13:18 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-31 12:39:01 +0200 |
commit | f907d740351886194bf2c9bcffceed22c4698ca5 (patch) | |
tree | f331d31592b38c1e8ab987787713fc7c99499042 /xmloff/inc | |
parent | ba6cfaaa6b5012875bc68d24519f4e658f7fe0e0 (diff) |
xmloff: sal_Bool->bool
Change-Id: Ib8c99a646923257647487cd7f121023876587cd2
Diffstat (limited to 'xmloff/inc')
-rw-r--r-- | xmloff/inc/txtfldi.hxx | 6 | ||||
-rw-r--r-- | xmloff/inc/txtvfldi.hxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/xmloff/inc/txtfldi.hxx b/xmloff/inc/txtfldi.hxx index f8282b9d9543..2ef1eef7188e 100644 --- a/xmloff/inc/txtfldi.hxx +++ b/xmloff/inc/txtfldi.hxx @@ -309,7 +309,7 @@ protected: sal_Bool bFixed; sal_Bool bIsDate; // is this a date? // (for XMLDateFieldImportContext, really) - sal_Bool bIsDefaultLanguage; + bool bIsDefaultLanguage; public: TYPEINFO_OVERRIDE(); @@ -618,7 +618,7 @@ class XMLDateTimeDocInfoImportContext : public XMLSimpleDocInfoImportContext sal_Bool bFormatOK; sal_Bool bIsDate; sal_Bool bHasDateTime; - sal_Bool bIsDefaultLanguage; + bool bIsDefaultLanguage; public: TYPEINFO_OVERRIDE(); @@ -670,7 +670,7 @@ class XMLUserDocInfoImportContext : public XMLSimpleDocInfoImportContext const OUString sPropertyIsFixedLanguage; sal_Int32 nFormat; sal_Bool bFormatOK; - sal_Bool bIsDefaultLanguage; + bool bIsDefaultLanguage; public: TYPEINFO_OVERRIDE(); diff --git a/xmloff/inc/txtvfldi.hxx b/xmloff/inc/txtvfldi.hxx index e6469403cad5..4806349a7fd1 100644 --- a/xmloff/inc/txtvfldi.hxx +++ b/xmloff/inc/txtvfldi.hxx @@ -60,7 +60,7 @@ class XMLValueImportHelper sal_Int32 nFormatKey; /// format key (only valid of bFormatOK) OUString sFormula; /// formula string OUString sDefault; /// default (see bStringDefault/bFormulaDef.) - sal_Bool bIsDefaultLanguage;/// format (of nFormatKey) has system language? + bool bIsDefaultLanguage;/// format (of nFormatKey) has system language? sal_Bool bStringType; /// is this a string (or a float) type? sal_Bool bFormatOK; /// have we read a style:data-style-name attr.? |