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

coverity#1158361 Uncaught exception

Change-Id: I65af9fd82027fd7a00e18631707f5300f488ac95
üst 7dd66ca9
......@@ -1087,9 +1087,8 @@ uno::Reference<XAccessibleStateSet> SAL_CALL
///===== XAccessibleSelection ===========================================
void SAL_CALL
ScAccessibleSpreadsheet::selectAccessibleChild( sal_Int32 nChildIndex )
throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
void SAL_CALL ScAccessibleSpreadsheet::selectAccessibleChild( sal_Int32 nChildIndex )
throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
IsObjectValid();
......
......@@ -401,9 +401,8 @@ uno::Reference<XAccessibleStateSet> SAL_CALL
///===== XAccessibleSelection ===========================================
void SAL_CALL
ScAccessibleTableBase::selectAccessibleChild( sal_Int32 /* nChildIndex */ )
throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
void SAL_CALL ScAccessibleTableBase::selectAccessibleChild( sal_Int32 /* nChildIndex */ )
throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{
}
......
......@@ -183,7 +183,8 @@ private:
virtual void SAL_CALL
selectAccessibleChild( sal_Int32 nChildIndex )
throw (::com::sun::star::lang::IndexOutOfBoundsException,
::com::sun::star::uno::RuntimeException);
::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL
clearAccessibleSelection( )
......
......@@ -254,7 +254,8 @@ public:
virtual void SAL_CALL
selectAccessibleChild( sal_Int32 nChildIndex )
throw (::com::sun::star::lang::IndexOutOfBoundsException,
::com::sun::star::uno::RuntimeException);
::com::sun::star::uno::RuntimeException,
std::exception);
virtual sal_Bool SAL_CALL
isAccessibleChildSelected( sal_Int32 nChildIndex )
......
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