coverity#738381 Uncaught exception

Change-Id: Ie94bd97976f98cad5f21c96ef7344d4e66983fcc
This commit is contained in:
Caolán McNamara
2014-02-12 10:22:40 +00:00
parent 4cafc42299
commit be1fd3b6ac
2 changed files with 4 additions and 2 deletions

View File

@@ -115,7 +115,8 @@ public:
virtual ::com::sun::star::uno::Sequence<
::com::sun::star::uno::Sequence<
::com::sun::star::beans::PropertyValue > > SAL_CALL getRubyList( sal_Bool bAutomatic )
throw(::com::sun::star::uno::RuntimeException);
throw (::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL setRubyList(
const ::com::sun::star::uno::Sequence<

View File

@@ -537,7 +537,8 @@ uno::Reference< beans::XPropertySet > SwXTextView::getViewSettings(void) throw(
return *pxViewSettings;
}
Sequence< Sequence< PropertyValue > > SwXTextView::getRubyList( sal_Bool /*bAutomatic*/ ) throw(RuntimeException)
Sequence< Sequence< PropertyValue > > SwXTextView::getRubyList( sal_Bool /*bAutomatic*/ )
throw (RuntimeException, std::exception)
{
SolarMutexGuard aGuard;