summaryrefslogtreecommitdiff
path: root/forms/source/xforms/submission/submission.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms/submission/submission.hxx')
-rw-r--r--forms/source/xforms/submission/submission.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/xforms/submission/submission.hxx b/forms/source/xforms/submission/submission.hxx
index bfdb0922898d..facbc64d5be7 100644
--- a/forms/source/xforms/submission/submission.hxx
+++ b/forms/source/xforms/submission/submission.hxx
@@ -62,11 +62,11 @@ protected:
css::uno::Reference< css::ucb::XProgressHandler > m_aProgressHandler;
public:
- virtual css::uno::Reference< css::task::XInteractionHandler > SAL_CALL getInteractionHandler() throw (css::uno::RuntimeException, std::exception) override
+ virtual css::uno::Reference< css::task::XInteractionHandler > SAL_CALL getInteractionHandler() override
{
return m_aInteractionHandler;
}
- virtual css::uno::Reference< css::ucb::XProgressHandler > SAL_CALL getProgressHandler() throw (css::uno::RuntimeException, std::exception) override
+ virtual css::uno::Reference< css::ucb::XProgressHandler > SAL_CALL getProgressHandler() override
{
return m_aProgressHandler;
}
@@ -85,16 +85,16 @@ public:
CProgressHandlerHelper()
: m_count(0)
{}
- virtual void SAL_CALL push( const css::uno::Any& /*aStatus*/) throw(css::uno::RuntimeException, std::exception) override
+ virtual void SAL_CALL push( const css::uno::Any& /*aStatus*/) override
{
m_mLock.acquire();
m_count++;
m_mLock.release();
}
- virtual void SAL_CALL update(const css::uno::Any& /*aStatus*/) throw(css::uno::RuntimeException, std::exception) override
+ virtual void SAL_CALL update(const css::uno::Any& /*aStatus*/) override
{
}
- virtual void SAL_CALL pop() throw(css::uno::RuntimeException, std::exception) override
+ virtual void SAL_CALL pop() override
{
m_mLock.acquire();
m_count--;