summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-09-18 20:00:16 +0300
committerTor Lillqvist <tml@collabora.com>2013-09-18 20:13:23 +0300
commit98b3ed32d53d9eaa8f7e16dc6afca0fc9d27bcd1 (patch)
tree8c7046edb7292e9d94d64a12f4b552940fcaabce /xmloff
parent83ea6bf0deb8c2450e5e8fbdac0194c30ba5ff85 (diff)
WaE: unsafe mix of type 'sal_Bool' and type 'const bool'
Change-Id: I220868988af814c80c47fad9f8d43c30601d397b
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/style/xmlbahdl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/style/xmlbahdl.cxx b/xmloff/source/style/xmlbahdl.cxx
index 0dbe5142bfc3..4ed4c5c002ae 100644
--- a/xmloff/source/style/xmlbahdl.cxx
+++ b/xmloff/source/style/xmlbahdl.cxx
@@ -693,7 +693,7 @@ XMLIsTransparentPropHdl::~XMLIsTransparentPropHdl()
bool XMLIsTransparentPropHdl::importXML( const OUString& rStrImpValue, Any& rValue, const SvXMLUnitConverter& ) const
{
- sal_Bool bValue = ( (rStrImpValue == sTransparent) == bTransPropValue);
+ sal_Bool bValue = (sal_Bool) ( (rStrImpValue == sTransparent) == bTransPropValue);
rValue.setValue( &bValue, ::getBooleanCppuType() );
return true;