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/XMLTextMasterPageExport.cxx | |
parent | 42bfd486a457d327f640263ccc3ee02a380f3566 (diff) |
xmloff: sal_Bool->bool
Change-Id: I873c80baec8e70e3e8f642644563b92137571a30
Diffstat (limited to 'xmloff/source/text/XMLTextMasterPageExport.cxx')
-rw-r--r-- | xmloff/source/text/XMLTextMasterPageExport.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/text/XMLTextMasterPageExport.cxx b/xmloff/source/text/XMLTextMasterPageExport.cxx index 2fdec0c4aac9..5f49219339d9 100644 --- a/xmloff/source/text/XMLTextMasterPageExport.cxx +++ b/xmloff/source/text/XMLTextMasterPageExport.cxx @@ -125,17 +125,17 @@ void XMLTextMasterPageExport::exportMasterPageContent( else { aAny = rPropSet->getPropertyValue( sHeaderOn ); - sal_Bool bHeader = sal_False; + bool bHeader = false; aAny >>= bHeader; - sal_Bool bHeaderFirstShared = sal_False; + bool bHeaderFirstShared = false; if( bHeader ) { aAny = rPropSet->getPropertyValue( sFirstShareContent ); aAny >>= bHeaderFirstShared; } - sal_Bool bHeaderLeftShared = sal_False; + bool bHeaderLeftShared = false; if( bHeader ) { aAny = rPropSet->getPropertyValue( sHeaderShareContent ); @@ -173,17 +173,17 @@ void XMLTextMasterPageExport::exportMasterPageContent( } aAny = rPropSet->getPropertyValue( sFooterOn ); - sal_Bool bFooter = sal_False; + bool bFooter = false; aAny >>= bFooter; - sal_Bool bFooterFirstShared = sal_False; + bool bFooterFirstShared = false; if( bFooter ) { aAny = rPropSet->getPropertyValue( sFirstShareContent ); aAny >>= bFooterFirstShared; } - sal_Bool bFooterLeftShared = sal_False; + bool bFooterLeftShared = false; if( bFooter ) { aAny = rPropSet->getPropertyValue( sFooterShareContent ); |