summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-07-02 09:15:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-07-02 11:39:34 +0100
commit1d498fb0feca911fa063e96779b654c3aded2415 (patch)
treeaf68b46ac75ca322011739eda846d3c9d721e9c5 /include
parentcoverity#1309048 Unchecked return value (diff)
downloadcore-1d498fb0feca911fa063e96779b654c3aded2415.tar.gz
core-1d498fb0feca911fa063e96779b654c3aded2415.zip
some other coverity things
Change-Id: I89ffd2b918f8707cde1b1d015c1ad35ef484b69c
Diffstat (limited to 'include')
-rw-r--r--include/svx/AccessibleShape.hxx2
-rw-r--r--include/vbahelper/vbaeventshelperbase.hxx2
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. */