summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-09-30 08:02:58 +0300
committerTor Lillqvist <tml@collabora.com>2014-09-30 08:02:58 +0300
commit38975e16ecfd900a14600f2f1383608b659d253b (patch)
tree56cd67740c9bd0001d2cd679ae39d733ec7f054b /xmloff
parent6a6e8628bdbe60931ce8e7fa9f4bb66170f7737b (diff)
WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
Change-Id: Ibcb6abe7162197dec35f4626f158448ff538542f
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/text/XMLTextHeaderFooterContext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/text/XMLTextHeaderFooterContext.cxx b/xmloff/source/text/XMLTextHeaderFooterContext.cxx
index b396e911c006..40ac8087b7d3 100644
--- a/xmloff/source/text/XMLTextHeaderFooterContext.cxx
+++ b/xmloff/source/text/XMLTextHeaderFooterContext.cxx
@@ -74,7 +74,7 @@ XMLTextHeaderFooterContext::XMLTextHeaderFooterContext( SvXMLImport& rImport, sa
if( bShared )
{
// Don't share headers any longer
- bShared = sal_False;
+ bShared = false;
aAny.setValue( &bShared, ::getBooleanCppuType() );
xPropSet->setPropertyValue( sShareContent, aAny );
}
@@ -88,7 +88,7 @@ XMLTextHeaderFooterContext::XMLTextHeaderFooterContext( SvXMLImport& rImport, sa
if( bSharedFirst )
{
// Don't share first/right headers any longer
- bSharedFirst = sal_False;
+ bSharedFirst = false;
aAny.setValue( &bSharedFirst, ::getBooleanCppuType() );
xPropSet->setPropertyValue( sShareContentFirst, aAny );
}