coverity#738405 Uncaught exception
Change-Id: Id6a851ec0799e2064b4b20c4a5dcefa4d5b81ee1
This commit is contained in:
@@ -190,7 +190,9 @@ public:
|
||||
|
||||
//XPageCursor
|
||||
virtual sal_Bool SAL_CALL jumpToFirstPage(void) throw( ::com::sun::star::uno::RuntimeException );
|
||||
virtual sal_Bool SAL_CALL jumpToLastPage(void) throw( ::com::sun::star::uno::RuntimeException );
|
||||
virtual sal_Bool SAL_CALL jumpToLastPage()
|
||||
throw (::com::sun::star::uno::RuntimeException,
|
||||
std::exception);
|
||||
virtual sal_Bool SAL_CALL jumpToPage(sal_Int16 nPage) throw( ::com::sun::star::uno::RuntimeException );
|
||||
virtual sal_Bool SAL_CALL jumpToNextPage(void) throw( ::com::sun::star::uno::RuntimeException );
|
||||
virtual sal_Bool SAL_CALL jumpToPreviousPage(void) throw( ::com::sun::star::uno::RuntimeException );
|
||||
|
@@ -1228,7 +1228,8 @@ sal_Bool SwXTextViewCursor::jumpToFirstPage(void) throw( uno::RuntimeException )
|
||||
return bRet;
|
||||
}
|
||||
|
||||
sal_Bool SwXTextViewCursor::jumpToLastPage(void) throw( uno::RuntimeException )
|
||||
sal_Bool SwXTextViewCursor::jumpToLastPage()
|
||||
throw(uno::RuntimeException, std::exception)
|
||||
{
|
||||
SolarMutexGuard aGuard;
|
||||
sal_Bool bRet = sal_False;
|
||||
|
Reference in New Issue
Block a user