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

coverity#1158393 Uncaught exception

Change-Id: I1b42c0e76da019e1828dd6318dc22c7811ea7429
üst 4967f271
...@@ -1489,7 +1489,7 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException) ...@@ -1489,7 +1489,7 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
} }
sal_Bool SAL_CALL ScAccessibleSpreadsheet::selectColumn( sal_Int32 column ) sal_Bool SAL_CALL ScAccessibleSpreadsheet::selectColumn( sal_Int32 column )
throw (lang::IndexOutOfBoundsException, uno::RuntimeException) throw (lang::IndexOutOfBoundsException, uno::RuntimeException, std::exception)
{ {
if (IsFormulaMode()) if (IsFormulaMode())
{ {
......
...@@ -504,7 +504,8 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException) ...@@ -504,7 +504,8 @@ throw (lang::IndexOutOfBoundsException, uno::RuntimeException)
} }
sal_Bool SAL_CALL ScAccessibleTableBase::selectColumn( sal_Int32 ) sal_Bool SAL_CALL ScAccessibleTableBase::selectColumn( sal_Int32 )
throw (lang::IndexOutOfBoundsException, uno::RuntimeException) throw (lang::IndexOutOfBoundsException, uno::RuntimeException,
std::exception)
{ {
return sal_True; return sal_True;
} }
......
...@@ -244,7 +244,8 @@ private: ...@@ -244,7 +244,8 @@ private:
virtual sal_Bool SAL_CALL selectRow( sal_Int32 row ) virtual sal_Bool SAL_CALL selectRow( sal_Int32 row )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ;
virtual sal_Bool SAL_CALL selectColumn( sal_Int32 column ) virtual sal_Bool SAL_CALL selectColumn( sal_Int32 column )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException,
std::exception);
virtual sal_Bool SAL_CALL unselectRow( sal_Int32 row ) virtual sal_Bool SAL_CALL unselectRow( sal_Int32 row )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ;
virtual sal_Bool SAL_CALL unselectColumn( sal_Int32 column ) virtual sal_Bool SAL_CALL unselectColumn( sal_Int32 column )
......
...@@ -198,7 +198,8 @@ public: ...@@ -198,7 +198,8 @@ public:
virtual sal_Bool SAL_CALL selectRow( sal_Int32 row ) virtual sal_Bool SAL_CALL selectRow( sal_Int32 row )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ;
virtual sal_Bool SAL_CALL selectColumn( sal_Int32 column ) virtual sal_Bool SAL_CALL selectColumn( sal_Int32 column )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException,
std::exception);
virtual sal_Bool SAL_CALL unselectRow( sal_Int32 row ) virtual sal_Bool SAL_CALL unselectRow( sal_Int32 row )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ; throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) ;
virtual sal_Bool SAL_CALL unselectColumn( sal_Int32 column ) virtual sal_Bool SAL_CALL unselectColumn( sal_Int32 column )
......
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