summaryrefslogtreecommitdiff
path: root/svx/source/form/datalistener.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/form/datalistener.cxx')
-rw-r--r--svx/source/form/datalistener.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/form/datalistener.cxx b/svx/source/form/datalistener.cxx
index 813f51a73612..7b50b9f065d7 100644
--- a/svx/source/form/datalistener.cxx
+++ b/svx/source/form/datalistener.cxx
@@ -45,23 +45,23 @@ namespace svxform
}
// XContainerListener
- void SAL_CALL DataListener::elementInserted( const ContainerEvent& /*Event*/ ) throw (RuntimeException, std::exception)
+ void SAL_CALL DataListener::elementInserted( const ContainerEvent& /*Event*/ )
{
m_pNaviWin->NotifyChanges();
}
- void SAL_CALL DataListener::elementRemoved( const ContainerEvent& /*Event*/ ) throw (RuntimeException, std::exception)
+ void SAL_CALL DataListener::elementRemoved( const ContainerEvent& /*Event*/ )
{
m_pNaviWin->NotifyChanges();
}
- void SAL_CALL DataListener::elementReplaced( const ContainerEvent& /*Event*/ ) throw (RuntimeException, std::exception)
+ void SAL_CALL DataListener::elementReplaced( const ContainerEvent& /*Event*/ )
{
m_pNaviWin->NotifyChanges();
}
// XFrameActionListener
- void SAL_CALL DataListener::frameAction( const FrameActionEvent& rActionEvt ) throw (RuntimeException, std::exception)
+ void SAL_CALL DataListener::frameAction( const FrameActionEvent& rActionEvt )
{
if ( FrameAction_COMPONENT_ATTACHED == rActionEvt.Action ||
FrameAction_COMPONENT_REATTACHED == rActionEvt.Action )
@@ -71,13 +71,13 @@ namespace svxform
}
// xml::dom::events::XEventListener
- void SAL_CALL DataListener::handleEvent( const Reference< XEvent >& /*evt*/ ) throw (RuntimeException, std::exception)
+ void SAL_CALL DataListener::handleEvent( const Reference< XEvent >& /*evt*/ )
{
m_pNaviWin->NotifyChanges();
}
// lang::XEventListener
- void SAL_CALL DataListener::disposing( const EventObject& /*Source*/ ) throw (RuntimeException, std::exception)
+ void SAL_CALL DataListener::disposing( const EventObject& /*Source*/ )
{
SAL_WARN( "svx.form", "disposing" );
}