coverity#706959 Uncaught exception
Change-Id: I6b18bd2df7ef190b39ceacd625bf2b62a53892fa
This commit is contained in:
@@ -135,7 +135,9 @@ protected:
|
|||||||
/** Derived classes have to return the name of the Basic document module. */
|
/** Derived classes have to return the name of the Basic document module. */
|
||||||
virtual OUString implGetDocumentModuleName(
|
virtual OUString implGetDocumentModuleName(
|
||||||
const EventHandlerInfo& rInfo,
|
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:
|
private:
|
||||||
typedef ::std::map< sal_Int32, OUString > ModulePathMap;
|
typedef ::std::map< sal_Int32, OUString > ModulePathMap;
|
||||||
|
@@ -780,7 +780,8 @@ void ScVbaEventsHelper::implPostProcessEvent( EventQueue& rEventQueue,
|
|||||||
}
|
}
|
||||||
|
|
||||||
OUString ScVbaEventsHelper::implGetDocumentModuleName( const EventHandlerInfo& rInfo,
|
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;
|
bool bSheetEvent = false;
|
||||||
rInfo.maUserData >>= bSheetEvent;
|
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 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 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 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:
|
private:
|
||||||
/** Checks if selection has been changed compared to selection of last call.
|
/** Checks if selection has been changed compared to selection of last call.
|
||||||
|
Reference in New Issue
Block a user