summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-09-18 20:27:21 +0300
committerTor Lillqvist <tml@collabora.com>2013-09-18 20:27:21 +0300
commit9ea6b8f88441b15c8987176977c38b1393b81ae3 (patch)
treedb0fc4412f877bc391d92f1790212704762dc8d0 /xmloff
parent98b3ed32d53d9eaa8f7e16dc6afca0fc9d27bcd1 (diff)
Still WaE: unsafe mix of type 'sal_Bool' and type 'const bool'
Change-Id: I16cc5dc16f16d7718dcbda8cc279ae98a89cb751
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 4ed4c5c002ae..3397e47e28ef 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 = (sal_Bool) ( (rStrImpValue == sTransparent) == bTransPropValue);
+ sal_Bool bValue = (sal_Bool) ( (bool) (rStrImpValue == sTransparent) == bTransPropValue);
rValue.setValue( &bValue, ::getBooleanCppuType() );
return true;