summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-23 20:14:26 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-23 20:35:30 +0000
commit2de1ddd780eff44131b08c6c1f2326a70258a647 (patch)
treef6adefc8cf38697443b88844f4670cd6027d65f9 /sc/source/ui/inc
parenta8772c4fc0963d5a864eeecf2e19004c5533d290 (diff)
coverity#1158402 Uncaught exception
Change-Id: I71556f797bf7e34f37b7022448019d5d03d8383a
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/AccessibleCellBase.hxx4
-rw-r--r--sc/source/ui/inc/AccessibleContextBase.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/inc/AccessibleCellBase.hxx b/sc/source/ui/inc/AccessibleCellBase.hxx
index 4cfe1daeac9f..66f0fc7be75f 100644
--- a/sc/source/ui/inc/AccessibleCellBase.hxx
+++ b/sc/source/ui/inc/AccessibleCellBase.hxx
@@ -58,8 +58,8 @@ public:
///===== XAccessibleComponent ============================================
- virtual sal_Bool SAL_CALL isVisible( )
- throw (::com::sun::star::uno::RuntimeException);
+ virtual sal_Bool SAL_CALL isVisible()
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual sal_Int32 SAL_CALL getForeground( )
throw (::com::sun::star::uno::RuntimeException);
diff --git a/sc/source/ui/inc/AccessibleContextBase.hxx b/sc/source/ui/inc/AccessibleContextBase.hxx
index 526eeec774b4..acbab2ce194d 100644
--- a/sc/source/ui/inc/AccessibleContextBase.hxx
+++ b/sc/source/ui/inc/AccessibleContextBase.hxx
@@ -126,8 +126,8 @@ public:
virtual sal_Bool SAL_CALL isShowing( )
throw (::com::sun::star::uno::RuntimeException);
- virtual sal_Bool SAL_CALL isVisible( )
- throw (::com::sun::star::uno::RuntimeException);
+ virtual sal_Bool SAL_CALL isVisible()
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual void SAL_CALL grabFocus( )
throw (::com::sun::star::uno::RuntimeException);