summaryrefslogtreecommitdiff
path: root/framework/source/fwe/helper/documentundoguard.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/fwe/helper/documentundoguard.cxx')
-rw-r--r--framework/source/fwe/helper/documentundoguard.cxx48
1 files changed, 24 insertions, 24 deletions
diff --git a/framework/source/fwe/helper/documentundoguard.cxx b/framework/source/fwe/helper/documentundoguard.cxx
index 2e839c62ee9a..95910a7e7e98 100644
--- a/framework/source/fwe/helper/documentundoguard.cxx
+++ b/framework/source/fwe/helper/documentundoguard.cxx
@@ -89,20 +89,20 @@ namespace framework
}
// XUndoManagerListener
- virtual void SAL_CALL undoActionAdded( const UndoManagerEvent& i_event ) throw (RuntimeException);
- virtual void SAL_CALL actionUndone( const UndoManagerEvent& i_event ) throw (RuntimeException);
- virtual void SAL_CALL actionRedone( const UndoManagerEvent& i_event ) throw (RuntimeException);
- virtual void SAL_CALL allActionsCleared( const EventObject& i_event ) throw (RuntimeException);
- virtual void SAL_CALL redoActionsCleared( const EventObject& i_event ) throw (RuntimeException);
- virtual void SAL_CALL resetAll( const EventObject& i_event ) throw (RuntimeException);
- virtual void SAL_CALL enteredContext( const UndoManagerEvent& i_event ) throw (RuntimeException);
- virtual void SAL_CALL enteredHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException);
- virtual void SAL_CALL leftContext( const UndoManagerEvent& i_event ) throw (RuntimeException);
- virtual void SAL_CALL leftHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException);
- virtual void SAL_CALL cancelledContext( const UndoManagerEvent& i_event ) throw (RuntimeException);
+ virtual void SAL_CALL undoActionAdded( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL actionUndone( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL actionRedone( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL allActionsCleared( const EventObject& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL redoActionsCleared( const EventObject& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL resetAll( const EventObject& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL enteredContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL enteredHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL leftContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL leftHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
+ virtual void SAL_CALL cancelledContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception);
// XEventListener
- virtual void SAL_CALL disposing( const EventObject& i_event ) throw (RuntimeException);
+ virtual void SAL_CALL disposing( const EventObject& i_event ) throw (RuntimeException, std::exception);
private:
Reference< XUndoManager > const m_xUndoManager;
@@ -111,84 +111,84 @@ namespace framework
};
- void SAL_CALL UndoManagerContextListener::undoActionAdded( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::undoActionAdded( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
// not interested in
}
- void SAL_CALL UndoManagerContextListener::actionUndone( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::actionUndone( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
// not interested in
}
- void SAL_CALL UndoManagerContextListener::actionRedone( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::actionRedone( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
// not interested in
}
- void SAL_CALL UndoManagerContextListener::allActionsCleared( const EventObject& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::allActionsCleared( const EventObject& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
// not interested in
}
- void SAL_CALL UndoManagerContextListener::redoActionsCleared( const EventObject& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::redoActionsCleared( const EventObject& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
// not interested in
}
- void SAL_CALL UndoManagerContextListener::resetAll( const EventObject& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::resetAll( const EventObject& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
m_nRelativeContextDepth = 0;
}
- void SAL_CALL UndoManagerContextListener::enteredContext( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::enteredContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
osl_atomic_increment( &m_nRelativeContextDepth );
}
- void SAL_CALL UndoManagerContextListener::enteredHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::enteredHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
osl_atomic_increment( &m_nRelativeContextDepth );
}
- void SAL_CALL UndoManagerContextListener::leftContext( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::leftContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
osl_atomic_decrement( &m_nRelativeContextDepth );
}
- void SAL_CALL UndoManagerContextListener::leftHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::leftHiddenContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
osl_atomic_decrement( &m_nRelativeContextDepth );
}
- void SAL_CALL UndoManagerContextListener::cancelledContext( const UndoManagerEvent& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::cancelledContext( const UndoManagerEvent& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
osl_atomic_decrement( &m_nRelativeContextDepth );
}
- void SAL_CALL UndoManagerContextListener::disposing( const EventObject& i_event ) throw (RuntimeException)
+ void SAL_CALL UndoManagerContextListener::disposing( const EventObject& i_event ) throw (RuntimeException, std::exception)
{
(void)i_event;
m_documentDisposed = true;