Kaydet (Commit) 98b3ed32 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

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

Change-Id: I220868988af814c80c47fad9f8d43c30601d397b
üst 83ea6bf0
...@@ -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 = ( (rStrImpValue == sTransparent) == bTransPropValue); sal_Bool bValue = (sal_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