Kaydet (Commit) e4107bb8 authored tarafından Noel Grandin's avatar Noel Grandin

eventattacher: sal_Bool->bool

Change-Id: Iaf760bc747bfd8e16a52ba2047b0be8178b740cf
üst 584e8c8c
...@@ -134,7 +134,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, ...@@ -134,7 +134,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName,
// Check if to firing or approveFiring has to be called // Check if to firing or approveFiring has to be called
Reference< XIdlMethod > xMethod = m_xListenerType->getMethod( FunctionName ); Reference< XIdlMethod > xMethod = m_xListenerType->getMethod( FunctionName );
sal_Bool bApproveFiring = sal_False; bool bApproveFiring = false;
if( !xMethod.is() ) if( !xMethod.is() )
return aRet; return aRet;
Reference< XIdlClass > xReturnType = xMethod->getReturnType(); Reference< XIdlClass > xReturnType = xMethod->getReturnType();
...@@ -142,7 +142,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, ...@@ -142,7 +142,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName,
if( ( xReturnType.is() && xReturnType->getTypeClass() != TypeClass_VOID ) || if( ( xReturnType.is() && xReturnType->getTypeClass() != TypeClass_VOID ) ||
aExceptionSeq.getLength() > 0 ) aExceptionSeq.getLength() > 0 )
{ {
bApproveFiring = sal_True; bApproveFiring = true;
} }
else else
{ {
...@@ -155,7 +155,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, ...@@ -155,7 +155,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName,
{ {
if( pInfos[ i ].aMode != ParamMode_IN ) if( pInfos[ i ].aMode != ParamMode_IN )
{ {
bApproveFiring = sal_True; bApproveFiring = true;
break; break;
} }
} }
......
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