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

coverity#1210079 Uncaught exception

Change-Id: I135e6f7e744afbf6acdb1cfd636e301219ef1420
üst c5d6aab1
...@@ -63,7 +63,7 @@ namespace comphelper ...@@ -63,7 +63,7 @@ namespace comphelper
// select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx) // select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx)
virtual void virtual void
implSelect( sal_Int32 nAccessibleChildIndex, sal_Bool bSelect ) implSelect( sal_Int32 nAccessibleChildIndex, sal_Bool bSelect )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) = 0; throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception) = 0;
protected: protected:
......
...@@ -324,7 +324,8 @@ bool SvxShowCharSetAcc::implIsSelected( sal_Int32 nAccessibleChildIndex ) throw ...@@ -324,7 +324,8 @@ bool SvxShowCharSetAcc::implIsSelected( sal_Int32 nAccessibleChildIndex ) throw
} }
// select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx) // select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx)
void SvxShowCharSetAcc::implSelect( sal_Int32 nAccessibleChildIndex, sal_Bool bSelect ) throw (IndexOutOfBoundsException, RuntimeException) void SvxShowCharSetAcc::implSelect(sal_Int32 nAccessibleChildIndex, sal_Bool bSelect)
throw (IndexOutOfBoundsException, RuntimeException, std::exception)
{ {
if ( m_pParent ) if ( m_pParent )
{ {
......
...@@ -196,7 +196,9 @@ namespace svx ...@@ -196,7 +196,9 @@ namespace svx
// select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx) // select the specified child => watch for special ChildIndexes (ACCESSIBLE_SELECTION_CHILD_xxx)
virtual void virtual void
implSelect( sal_Int32 nAccessibleChildIndex, sal_Bool bSelect ) implSelect( sal_Int32 nAccessibleChildIndex, sal_Bool bSelect )
throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE; throw (css::lang::IndexOutOfBoundsException,
css::uno::RuntimeException,
std::exception) SAL_OVERRIDE;
// OCommonAccessibleComponent // OCommonAccessibleComponent
/// implements the calculation of the bounding rectangle - still waiting to be overwritten /// implements the calculation of the bounding rectangle - still waiting to be overwritten
......
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