bool improvements

Change-Id: I0ef2adc0bd4a4764c38094b2b7d27c3453ecc117
This commit is contained in:
Stephan Bergmann
2014-01-28 20:00:28 +01:00
parent 608953c425
commit dbac5ccaf8
3 changed files with 5 additions and 5 deletions

View File

@@ -137,7 +137,7 @@ void SAL_CALL ScriptProtocolHandler::dispatchWithNotification(
sal_Bool bSuccess = sal_False;
Any invokeResult;
bool bCaughtException = sal_False;
bool bCaughtException = false;
Any aException;
if ( m_bInitialised )
@@ -233,7 +233,7 @@ void SAL_CALL ScriptProtocolHandler::dispatchWithNotification(
invokeResult <<= reason.concat( aException.getValueTypeName() ).concat( e.Message );
bCaughtException = sal_True;
bCaughtException = true;
}
}
else