coverity#983657 Uncaught exception
Change-Id: I4feec3aeaf5f7b821a15f3b74f7b2df1f63a6681
This commit is contained in:
parent
025387b6e7
commit
bcbf642c4c
1 changed files with 2 additions and 3 deletions
|
@ -451,7 +451,7 @@ public:
|
|||
private:
|
||||
// convert
|
||||
void convertToEventReturn( Any & rRet, const Type& rRetType )
|
||||
throw( CannotConvertException );
|
||||
throw (CannotConvertException, RuntimeException);
|
||||
|
||||
EventAttacherImpl * m_pEA;
|
||||
Reference< XInterface > m_xEAHold;
|
||||
|
@ -477,10 +477,9 @@ void SAL_CALL FilterAllListenerImpl::firing(const AllEventObject& Event)
|
|||
m_AllListener->firing( Event );
|
||||
}
|
||||
|
||||
|
||||
// Convert to the standard event return
|
||||
void FilterAllListenerImpl::convertToEventReturn( Any & rRet, const Type & rRetType )
|
||||
throw( CannotConvertException )
|
||||
throw (CannotConvertException, RuntimeException)
|
||||
{
|
||||
// no return value? Set to the specified values
|
||||
if( rRet.getValueType().getTypeClass() == TypeClass_VOID )
|
||||
|
|
Loading…
Reference in a new issue