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

coverity#738077 Uncaught exception

Change-Id: I85a482945c3851bf13aa6d2c65b6b297ea885bca
üst 3a06d483
......@@ -2648,7 +2648,7 @@ OUString SwAccessibleParagraph::getSelectedText()
}
sal_Int32 SwAccessibleParagraph::getSelectionStart()
throw (uno::RuntimeException)
throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
......
......@@ -334,7 +334,9 @@ public:
virtual sal_Int32 SAL_CALL getIndexAtPoint( const ::com::sun::star::awt::Point& aPoint ) throw (::com::sun::star::uno::RuntimeException);
virtual OUString SAL_CALL getSelectedText( )
throw (::com::sun::star::uno::RuntimeException, std::exception);
virtual sal_Int32 SAL_CALL getSelectionStart( ) throw (::com::sun::star::uno::RuntimeException);
virtual sal_Int32 SAL_CALL getSelectionStart()
throw (::com::sun::star::uno::RuntimeException,
std::exception);
virtual sal_Int32 SAL_CALL getSelectionEnd()
throw (::com::sun::star::uno::RuntimeException,
std::exception);
......
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