summaryrefslogtreecommitdiff
path: root/framework/source/jobs/job.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/jobs/job.cxx')
-rw-r--r--framework/source/jobs/job.cxx14
1 files changed, 6 insertions, 8 deletions
diff --git a/framework/source/jobs/job.cxx b/framework/source/jobs/job.cxx
index 935c79c073c4..be7ab2137b3c 100644
--- a/framework/source/jobs/job.cxx
+++ b/framework/source/jobs/job.cxx
@@ -619,7 +619,7 @@ void Job::impl_stopListening()
its results
*/
void SAL_CALL Job::jobFinished( /*IN*/ const css::uno::Reference< css::task::XAsyncJob >& xJob ,
- /*IN*/ const css::uno::Any& aResult ) throw(css::uno::RuntimeException, std::exception)
+ /*IN*/ const css::uno::Any& aResult )
{
SolarMutexGuard g;
@@ -657,8 +657,7 @@ void SAL_CALL Job::jobFinished( /*IN*/ const css::uno::Reference< css::task::XAs
@throw TerminateVetoException
if our internal wrapped job is still running.
*/
-void SAL_CALL Job::queryTermination( /*IN*/ const css::lang::EventObject& ) throw(css::frame::TerminationVetoException,
- css::uno::RuntimeException, std::exception )
+void SAL_CALL Job::queryTermination( /*IN*/ const css::lang::EventObject& )
{
SolarMutexGuard g;
@@ -694,7 +693,7 @@ void SAL_CALL Job::queryTermination( /*IN*/ const css::lang::EventObject& ) thro
@param aEvent
describes the broadcaster and must be the desktop instance
*/
-void SAL_CALL Job::notifyTermination( /*IN*/ const css::lang::EventObject& ) throw(css::uno::RuntimeException, std::exception)
+void SAL_CALL Job::notifyTermination( /*IN*/ const css::lang::EventObject& )
{
die();
// Do nothing else here. Our internal resources was released ...
@@ -719,8 +718,7 @@ void SAL_CALL Job::notifyTermination( /*IN*/ const css::lang::EventObject& ) thr
if our internal wrapped job is still running.
*/
void SAL_CALL Job::queryClosing( const css::lang::EventObject& aEvent ,
- sal_Bool bGetsOwnership ) throw(css::util::CloseVetoException,
- css::uno::RuntimeException, std::exception )
+ sal_Bool bGetsOwnership )
{
SolarMutexGuard g;
@@ -788,7 +786,7 @@ void SAL_CALL Job::queryClosing( const css::lang::EventObject& aEvent ,
@param aEvent
describes the broadcaster and must be the frame or model instance we know
*/
-void SAL_CALL Job::notifyClosing( const css::lang::EventObject& ) throw(css::uno::RuntimeException, std::exception)
+void SAL_CALL Job::notifyClosing( const css::lang::EventObject& )
{
die();
// Do nothing else here. Our internal resources was released ...
@@ -802,7 +800,7 @@ void SAL_CALL Job::notifyClosing( const css::lang::EventObject& ) throw(css::uno
@param aEvent
describe the broadcaster
*/
-void SAL_CALL Job::disposing( const css::lang::EventObject& aEvent ) throw(css::uno::RuntimeException, std::exception)
+void SAL_CALL Job::disposing( const css::lang::EventObject& aEvent )
{
/* SAFE { */
SolarMutexClearableGuard aWriteLock;