Kaydet (Commit) 2de1ddd7 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1158402 Uncaught exception

Change-Id: I71556f797bf7e34f37b7022448019d5d03d8383a
üst a8772c4f
......@@ -70,8 +70,8 @@ ScAccessibleCellBase::~ScAccessibleCellBase()
//===== XAccessibleComponent ============================================
sal_Bool SAL_CALL ScAccessibleCellBase::isVisible( )
throw (uno::RuntimeException)
sal_Bool SAL_CALL ScAccessibleCellBase::isVisible()
throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
......
......@@ -224,8 +224,8 @@ sal_Bool SAL_CALL ScAccessibleContextBase::isShowing( )
return bShowing;
}
sal_Bool SAL_CALL ScAccessibleContextBase::isVisible( )
throw (uno::RuntimeException)
sal_Bool SAL_CALL ScAccessibleContextBase::isVisible()
throw (uno::RuntimeException, std::exception)
{
return sal_True;
}
......
......@@ -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);
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment