coverity#706959 Uncaught exception
Change-Id: I6b18bd2df7ef190b39ceacd625bf2b62a53892fa
This commit is contained in:
parent
12402d2503
commit
09188ebfc4
@ -135,7 +135,9 @@ protected:
|
||||
/** Derived classes have to return the name of the Basic document module. */
|
||||
virtual OUString implGetDocumentModuleName(
|
||||
const EventHandlerInfo& rInfo,
|
||||
const css::uno::Sequence< css::uno::Any >& rArgs ) const throw (css::lang::IllegalArgumentException) = 0;
|
||||
const css::uno::Sequence< css::uno::Any >& rArgs ) const
|
||||
throw (css::lang::IllegalArgumentException,
|
||||
css::uno::RuntimeException) = 0;
|
||||
|
||||
private:
|
||||
typedef ::std::map< sal_Int32, OUString > ModulePathMap;
|
||||
|
@ -780,7 +780,8 @@ void ScVbaEventsHelper::implPostProcessEvent( EventQueue& rEventQueue,
|
||||
}
|
||||
|
||||
OUString ScVbaEventsHelper::implGetDocumentModuleName( const EventHandlerInfo& rInfo,
|
||||
const uno::Sequence< uno::Any >& rArgs ) const throw (lang::IllegalArgumentException)
|
||||
const uno::Sequence< uno::Any >& rArgs ) const
|
||||
throw (lang::IllegalArgumentException, uno::RuntimeException)
|
||||
{
|
||||
bool bSheetEvent = false;
|
||||
rInfo.maUserData >>= bSheetEvent;
|
||||
|
@ -41,7 +41,7 @@ protected:
|
||||
virtual bool implPrepareEvent( EventQueue& rEventQueue, const EventHandlerInfo& rInfo, const css::uno::Sequence< css::uno::Any >& rArgs ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
|
||||
virtual css::uno::Sequence< css::uno::Any > implBuildArgumentList( const EventHandlerInfo& rInfo, const css::uno::Sequence< css::uno::Any >& rArgs ) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException) SAL_OVERRIDE;
|
||||
virtual void implPostProcessEvent( EventQueue& rEventQueue, const EventHandlerInfo& rInfo, bool bCancel ) throw (css::uno::RuntimeException) SAL_OVERRIDE;
|
||||
virtual OUString implGetDocumentModuleName( const EventHandlerInfo& rInfo, const css::uno::Sequence< css::uno::Any >& rArgs ) const throw (css::lang::IllegalArgumentException) SAL_OVERRIDE;
|
||||
virtual OUString implGetDocumentModuleName( const EventHandlerInfo& rInfo, const css::uno::Sequence< css::uno::Any >& rArgs ) const throw (css::lang::IllegalArgumentException, css::uno::RuntimeException) SAL_OVERRIDE;
|
||||
|
||||
private:
|
||||
/** Checks if selection has been changed compared to selection of last call.
|
||||
|
Loading…
x
Reference in New Issue
Block a user