diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-17 11:40:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-22 09:53:14 +0200 |
commit | e4107bb8b7230c039e7fc76951bfb3634fe4b9e0 (patch) | |
tree | feb7bf9385ac5c4208e1d610b6a7d9c7b59bf7ac /eventattacher | |
parent | 584e8c8c3c81c4e475905c687b377676334b393b (diff) |
eventattacher: sal_Bool->bool
Change-Id: Iaf760bc747bfd8e16a52ba2047b0be8178b740cf
Diffstat (limited to 'eventattacher')
-rw-r--r-- | eventattacher/source/eventattacher.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eventattacher/source/eventattacher.cxx b/eventattacher/source/eventattacher.cxx index 7a7765da48d5..58106d25998a 100644 --- a/eventattacher/source/eventattacher.cxx +++ b/eventattacher/source/eventattacher.cxx @@ -134,7 +134,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, // Check if to firing or approveFiring has to be called Reference< XIdlMethod > xMethod = m_xListenerType->getMethod( FunctionName ); - sal_Bool bApproveFiring = sal_False; + bool bApproveFiring = false; if( !xMethod.is() ) return aRet; Reference< XIdlClass > xReturnType = xMethod->getReturnType(); @@ -142,7 +142,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, if( ( xReturnType.is() && xReturnType->getTypeClass() != TypeClass_VOID ) || aExceptionSeq.getLength() > 0 ) { - bApproveFiring = sal_True; + bApproveFiring = true; } else { @@ -155,7 +155,7 @@ Any SAL_CALL InvocationToAllListenerMapper::invoke(const OUString& FunctionName, { if( pInfos[ i ].aMode != ParamMode_IN ) { - bApproveFiring = sal_True; + bApproveFiring = true; break; } } |