diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-07-02 09:15:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-07-02 11:39:34 +0100 |
commit | 1d498fb0feca911fa063e96779b654c3aded2415 (patch) | |
tree | af68b46ac75ca322011739eda846d3c9d721e9c5 /include | |
parent | 3f2c6a02df51f5d548bb1100275860be5196b766 (diff) |
some other coverity things
Change-Id: I89ffd2b918f8707cde1b1d015c1ad35ef484b69c
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/AccessibleShape.hxx | 2 | ||||
-rw-r--r-- | include/vbahelper/vbaeventshelperbase.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/AccessibleShape.hxx b/include/svx/AccessibleShape.hxx index cb36b26e9676..495c3c1bd652 100644 --- a/include/svx/AccessibleShape.hxx +++ b/include/svx/AccessibleShape.hxx @@ -442,7 +442,7 @@ protected: */ virtual OUString CreateAccessibleName() - throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; /// Create a description string that contains the accessible description. virtual OUString diff --git a/include/vbahelper/vbaeventshelperbase.hxx b/include/vbahelper/vbaeventshelperbase.hxx index d85bb4fdb855..3c20227d697c 100644 --- a/include/vbahelper/vbaeventshelperbase.hxx +++ b/include/vbahelper/vbaeventshelperbase.hxx @@ -127,7 +127,7 @@ protected: /** Derived classes have to return the argument list for the specified VBA event handler. */ 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) = 0; + const css::uno::Sequence< css::uno::Any >& rArgs ) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) = 0; /** Derived classes may do additional postprocessing. Called even if the event handler does not exist, or if an error occurred during execution. */ |