Kaydet (Commit) 9ea6b8f8 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Still WaE: unsafe mix of type 'sal_Bool' and type 'const bool'

Change-Id: I16cc5dc16f16d7718dcbda8cc279ae98a89cb751
üst 98b3ed32
...@@ -693,7 +693,7 @@ XMLIsTransparentPropHdl::~XMLIsTransparentPropHdl() ...@@ -693,7 +693,7 @@ XMLIsTransparentPropHdl::~XMLIsTransparentPropHdl()
bool XMLIsTransparentPropHdl::importXML( const OUString& rStrImpValue, Any& rValue, const SvXMLUnitConverter& ) const 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() ); rValue.setValue( &bValue, ::getBooleanCppuType() );
return true; return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment