summaryrefslogtreecommitdiff
path: root/framework/source/helper/persistentwindowstate.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/helper/persistentwindowstate.cxx')
-rw-r--r--framework/source/helper/persistentwindowstate.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/helper/persistentwindowstate.cxx b/framework/source/helper/persistentwindowstate.cxx
index 1b5f6ce72491..634583b52ea6 100644
--- a/framework/source/helper/persistentwindowstate.cxx
+++ b/framework/source/helper/persistentwindowstate.cxx
@@ -60,7 +60,7 @@ PersistentWindowState::~PersistentWindowState()
//*****************************************************************************************************************
void SAL_CALL PersistentWindowState::initialize(const css::uno::Sequence< css::uno::Any >& lArguments)
throw(css::uno::Exception ,
- css::uno::RuntimeException)
+ css::uno::RuntimeException, std::exception)
{
// check arguments
css::uno::Reference< css::frame::XFrame > xFrame;
@@ -90,7 +90,7 @@ void SAL_CALL PersistentWindowState::initialize(const css::uno::Sequence< css::u
//*****************************************************************************************************************
void SAL_CALL PersistentWindowState::frameAction(const css::frame::FrameActionEvent& aEvent)
- throw(css::uno::RuntimeException)
+ throw(css::uno::RuntimeException, std::exception)
{
// SAFE -> ----------------------------------
ReadGuard aReadLock(m_aLock);
@@ -151,7 +151,7 @@ void SAL_CALL PersistentWindowState::frameAction(const css::frame::FrameActionEv
//*****************************************************************************************************************
void SAL_CALL PersistentWindowState::disposing(const css::lang::EventObject&)
- throw(css::uno::RuntimeException)
+ throw(css::uno::RuntimeException, std::exception)
{
// nothing todo here - because we hold the frame as weak reference only
}