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

coverity#1158370 Uncaught exception

Change-Id: Ic21644e6430618b3951a925eeeb60132f106c911
üst fbb1bdb3
...@@ -353,7 +353,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessiblePreviewTable::getAccessibleSu ...@@ -353,7 +353,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessiblePreviewTable::getAccessibleSu
} }
sal_Bool SAL_CALL ScAccessiblePreviewTable::isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn ) sal_Bool SAL_CALL ScAccessiblePreviewTable::isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn )
throw (lang::IndexOutOfBoundsException, uno::RuntimeException) throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{ {
// in the page preview, there is no selection // in the page preview, there is no selection
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
......
...@@ -273,7 +273,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessibleTableBase::getAccessibleSumma ...@@ -273,7 +273,7 @@ uno::Reference< XAccessible > SAL_CALL ScAccessibleTableBase::getAccessibleSumma
} }
sal_Bool SAL_CALL ScAccessibleTableBase::isAccessibleSelected( sal_Int32 /* nRow */, sal_Int32 /* nColumn */ ) sal_Bool SAL_CALL ScAccessibleTableBase::isAccessibleSelected( sal_Int32 /* nRow */, sal_Int32 /* nColumn */ )
throw (uno::RuntimeException, lang::IndexOutOfBoundsException) throw (uno::RuntimeException, lang::IndexOutOfBoundsException, std::exception)
{ {
OSL_FAIL("not implemented yet"); OSL_FAIL("not implemented yet");
return false; return false;
......
...@@ -113,7 +113,8 @@ public: ...@@ -113,7 +113,8 @@ public:
getAccessibleSummary() throw (::com::sun::star::uno::RuntimeException); getAccessibleSummary() throw (::com::sun::star::uno::RuntimeException);
virtual sal_Bool SAL_CALL isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn ) virtual sal_Bool SAL_CALL isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn )
throw (::com::sun::star::lang::IndexOutOfBoundsException, throw (::com::sun::star::lang::IndexOutOfBoundsException,
::com::sun::star::uno::RuntimeException); ::com::sun::star::uno::RuntimeException,
std::exception);
virtual sal_Int32 SAL_CALL getAccessibleIndex( sal_Int32 nRow, sal_Int32 nColumn ) virtual sal_Int32 SAL_CALL getAccessibleIndex( sal_Int32 nRow, sal_Int32 nColumn )
throw (::com::sun::star::lang::IndexOutOfBoundsException, throw (::com::sun::star::lang::IndexOutOfBoundsException,
::com::sun::star::uno::RuntimeException); ::com::sun::star::uno::RuntimeException);
......
...@@ -167,7 +167,8 @@ public: ...@@ -167,7 +167,8 @@ public:
virtual sal_Bool SAL_CALL virtual sal_Bool SAL_CALL
isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn ) isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn )
throw (::com::sun::star::uno::RuntimeException, throw (::com::sun::star::uno::RuntimeException,
::com::sun::star::lang::IndexOutOfBoundsException); ::com::sun::star::lang::IndexOutOfBoundsException,
std::exception);
///===== XAccessibleExtendedTable ======================================== ///===== XAccessibleExtendedTable ========================================
......
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