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

coverity#738403 Uncaught exception

Change-Id: Ie8b6586b29976abddd204ad5150edda13bf27230
üst 0321ebad
......@@ -221,7 +221,9 @@ public:
virtual sal_Bool SAL_CALL isAtStartOfLine()
throw (::com::sun::star::uno::RuntimeException,
std::exception);
virtual sal_Bool SAL_CALL isAtEndOfLine(void) throw( ::com::sun::star::uno::RuntimeException );
virtual sal_Bool SAL_CALL isAtEndOfLine()
throw (::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL gotoEndOfLine(sal_Bool bExpand) throw( ::com::sun::star::uno::RuntimeException );
virtual void SAL_CALL gotoStartOfLine(sal_Bool bExpand)
throw (::com::sun::star::uno::RuntimeException,
......
......@@ -1648,7 +1648,8 @@ sal_Bool SwXTextViewCursor::isAtStartOfLine()
return bRet;
}
sal_Bool SwXTextViewCursor::isAtEndOfLine(void) throw( uno::RuntimeException )
sal_Bool SwXTextViewCursor::isAtEndOfLine()
throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
sal_Bool bRet = sal_False;
......
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