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

coverity#737824 Uncaught exception

Change-Id: Ie8ba13265b436eb3ca548d5ccd2ca28d1e65e035
üst 8ad55179
...@@ -288,7 +288,9 @@ public: ...@@ -288,7 +288,9 @@ public:
virtual ~SdMasterPagesAccess() throw(); virtual ~SdMasterPagesAccess() throw();
// XDrawPages // XDrawPages
virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPage > SAL_CALL insertNewByIndex( sal_Int32 nIndex ) throw(::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPage > SAL_CALL insertNewByIndex( sal_Int32 nIndex )
throw (::com::sun::star::uno::RuntimeException,
std::exception);
virtual void SAL_CALL remove( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPage >& xPage ) throw(::com::sun::star::uno::RuntimeException); virtual void SAL_CALL remove( const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPage >& xPage ) throw(::com::sun::star::uno::RuntimeException);
// XIndexAccess // XIndexAccess
......
...@@ -2670,7 +2670,7 @@ sal_Bool SAL_CALL SdMasterPagesAccess::hasElements() ...@@ -2670,7 +2670,7 @@ sal_Bool SAL_CALL SdMasterPagesAccess::hasElements()
// XDrawPages // XDrawPages
uno::Reference< drawing::XDrawPage > SAL_CALL SdMasterPagesAccess::insertNewByIndex( sal_Int32 nInsertPos ) uno::Reference< drawing::XDrawPage > SAL_CALL SdMasterPagesAccess::insertNewByIndex( sal_Int32 nInsertPos )
throw(uno::RuntimeException) throw(uno::RuntimeException, std::exception)
{ {
::SolarMutexGuard aGuard; ::SolarMutexGuard aGuard;
......
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