diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:04:34 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:55:55 +0100 |
commit | 891b5facf3d1b541e78a0bb455b02df5c36cb3e2 (patch) | |
tree | 6f993a23eeb67ef4b21e413e252b1093edb3bde9 | |
parent | fa6db8cff15ff745d7eaa94da691132fc092fc7d (diff) |
coverity#1308528 Uncaught exception
Change-Id: Ia8338a4ad0025cfc715ad29576efe45cb4ab9363
-rw-r--r-- | sc/source/ui/Accessibility/AccessiblePageHeaderArea.cxx | 2 | ||||
-rw-r--r-- | sc/source/ui/inc/AccessiblePageHeaderArea.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/Accessibility/AccessiblePageHeaderArea.cxx b/sc/source/ui/Accessibility/AccessiblePageHeaderArea.cxx index 0d0209ec71c3..d1d83b9a98c2 100644 --- a/sc/source/ui/Accessibility/AccessiblePageHeaderArea.cxx +++ b/sc/source/ui/Accessibility/AccessiblePageHeaderArea.cxx @@ -217,7 +217,7 @@ uno::Sequence<sal_Int8> SAL_CALL //===== internal ============================================================== OUString SAL_CALL ScAccessiblePageHeaderArea::createAccessibleDescription() - throw(uno::RuntimeException) + throw(uno::RuntimeException, std::exception) { OUString sDesc; switch (meAdjust) diff --git a/sc/source/ui/inc/AccessiblePageHeaderArea.hxx b/sc/source/ui/inc/AccessiblePageHeaderArea.hxx index 123e9b8bd643..bcd26b31ac3d 100644 --- a/sc/source/ui/inc/AccessiblePageHeaderArea.hxx +++ b/sc/source/ui/inc/AccessiblePageHeaderArea.hxx @@ -106,7 +106,7 @@ public: throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; protected: - virtual OUString SAL_CALL createAccessibleDescription() throw(::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; + virtual OUString SAL_CALL createAccessibleDescription() throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual OUString SAL_CALL createAccessibleName() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual Rectangle GetBoundingBoxOnScreen() const throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; |