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

coverity#707113 Uncaught exception

Change-Id: I612503ef40682820821dbf61dd12afbc62e4eb39
üst 7db1dbaa
...@@ -136,7 +136,9 @@ public: ...@@ -136,7 +136,9 @@ public:
virtual void SAL_CALL rehearseTimings( ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL rehearseTimings( ) throw (::com::sun::star::uno::RuntimeException);
// XPresentation2 // XPresentation2
virtual void SAL_CALL startWithArguments( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& Arguments ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL startWithArguments(const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& Arguments)
throw (::com::sun::star::uno::RuntimeException,
std::exception);
virtual ::sal_Bool SAL_CALL isRunning( ) throw (::com::sun::star::uno::RuntimeException); virtual ::sal_Bool SAL_CALL isRunning( ) throw (::com::sun::star::uno::RuntimeException);
virtual ::com::sun::star::uno::Reference< ::com::sun::star::presentation::XSlideShowController > SAL_CALL getController( ) throw (::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::presentation::XSlideShowController > SAL_CALL getController( ) throw (::com::sun::star::uno::RuntimeException);
......
...@@ -834,7 +834,8 @@ void SAL_CALL SlideShow::rehearseTimings() throw(RuntimeException) ...@@ -834,7 +834,8 @@ void SAL_CALL SlideShow::rehearseTimings() throw(RuntimeException)
// XPresentation2 // XPresentation2
void SAL_CALL SlideShow::startWithArguments( const Sequence< PropertyValue >& rArguments ) throw (RuntimeException) void SAL_CALL SlideShow::startWithArguments(const Sequence< PropertyValue >& rArguments)
throw (RuntimeException, std::exception)
{ {
SolarMutexGuard aGuard; SolarMutexGuard aGuard;
ThrowIfDisposed(); ThrowIfDisposed();
......
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