summaryrefslogtreecommitdiff
path: root/framework/source/layoutmanager/toolbarlayoutmanager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/layoutmanager/toolbarlayoutmanager.cxx')
-rw-r--r--framework/source/layoutmanager/toolbarlayoutmanager.cxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/framework/source/layoutmanager/toolbarlayoutmanager.cxx b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
index d9ebead05d60..851b6838b6c5 100644
--- a/framework/source/layoutmanager/toolbarlayoutmanager.cxx
+++ b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
@@ -95,7 +95,7 @@ void SAL_CALL ToolbarLayoutManager::release() throw()
OWeakObject::release();
}
-uno::Any SAL_CALL ToolbarLayoutManager::queryInterface( const uno::Type & rType ) throw( uno::RuntimeException )
+uno::Any SAL_CALL ToolbarLayoutManager::queryInterface( const uno::Type & rType ) throw( uno::RuntimeException, std::exception )
{
uno::Any a = ::cppu::queryInterface( rType,
(static_cast< awt::XDockableWindowListener* >(this)),
@@ -108,7 +108,7 @@ uno::Any SAL_CALL ToolbarLayoutManager::queryInterface( const uno::Type & rType
return OWeakObject::queryInterface( rType );
}
-void SAL_CALL ToolbarLayoutManager::disposing( const lang::EventObject& aEvent ) throw( uno::RuntimeException )
+void SAL_CALL ToolbarLayoutManager::disposing( const lang::EventObject& aEvent ) throw( uno::RuntimeException, std::exception )
{
if ( aEvent.Source == m_xFrame )
{
@@ -3219,7 +3219,7 @@ void ToolbarLayoutManager::implts_renumberRowColumnData(
// XWindowListener
void SAL_CALL ToolbarLayoutManager::windowResized( const awt::WindowEvent& aEvent )
-throw( uno::RuntimeException )
+throw( uno::RuntimeException, std::exception )
{
WriteGuard aWriteLock( m_aLock );
bool bLocked( m_bDockingInProgress );
@@ -3269,17 +3269,17 @@ throw( uno::RuntimeException )
}
void SAL_CALL ToolbarLayoutManager::windowMoved( const awt::WindowEvent& /*aEvent*/ )
-throw( uno::RuntimeException )
+throw( uno::RuntimeException, std::exception )
{
}
void SAL_CALL ToolbarLayoutManager::windowShown( const lang::EventObject& /*aEvent*/ )
-throw( uno::RuntimeException )
+throw( uno::RuntimeException, std::exception )
{
}
void SAL_CALL ToolbarLayoutManager::windowHidden( const lang::EventObject& /*aEvent*/ )
-throw( uno::RuntimeException )
+throw( uno::RuntimeException, std::exception )
{
}
@@ -3287,7 +3287,7 @@ throw( uno::RuntimeException )
// XDockableWindowListener
void SAL_CALL ToolbarLayoutManager::startDocking( const awt::DockingEvent& e )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
bool bWinFound( false );
@@ -3342,7 +3342,7 @@ throw (uno::RuntimeException)
}
awt::DockingData SAL_CALL ToolbarLayoutManager::docking( const awt::DockingEvent& e )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
const sal_Int32 MAGNETIC_DISTANCE_UNDOCK = 25;
const sal_Int32 MAGNETIC_DISTANCE_DOCK = 20;
@@ -3520,7 +3520,7 @@ throw (uno::RuntimeException)
}
void SAL_CALL ToolbarLayoutManager::endDocking( const awt::EndDockingEvent& e )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
bool bDockingInProgress( false );
bool bStartDockFloated( false );
@@ -3616,7 +3616,7 @@ throw (uno::RuntimeException)
}
sal_Bool SAL_CALL ToolbarLayoutManager::prepareToggleFloatingMode( const lang::EventObject& e )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
ReadGuard aReadLock( m_aLock );
bool bDockingInProgress = m_bDockingInProgress;
@@ -3658,7 +3658,7 @@ throw (uno::RuntimeException)
}
void SAL_CALL ToolbarLayoutManager::toggleFloatingMode( const lang::EventObject& e )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
UIElement aUIDockingElement;
@@ -3789,7 +3789,7 @@ throw (uno::RuntimeException)
}
void SAL_CALL ToolbarLayoutManager::closed( const lang::EventObject& e )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
OUString aName;
UIElement aUIElement;
@@ -3836,7 +3836,7 @@ throw (uno::RuntimeException)
}
void SAL_CALL ToolbarLayoutManager::endPopupMode( const awt::EndPopupModeEvent& /*e*/ )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
}
@@ -3844,7 +3844,7 @@ throw (uno::RuntimeException)
// XUIConfigurationListener
void SAL_CALL ToolbarLayoutManager::elementInserted( const ui::ConfigurationEvent& rEvent )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
UIElement aUIElement = implts_findToolbar( rEvent.ResourceURL );
@@ -3908,7 +3908,7 @@ throw (uno::RuntimeException)
}
void SAL_CALL ToolbarLayoutManager::elementRemoved( const ui::ConfigurationEvent& rEvent )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
ReadGuard aReadLock( m_aLock );
uno::Reference< awt::XWindow > xContainerWindow( m_xContainerWindow, uno::UNO_QUERY );
@@ -3956,7 +3956,7 @@ throw (uno::RuntimeException)
}
void SAL_CALL ToolbarLayoutManager::elementReplaced( const ui::ConfigurationEvent& rEvent )
-throw (uno::RuntimeException)
+throw (uno::RuntimeException, std::exception)
{
UIElement aUIElement = implts_findToolbar( rEvent.ResourceURL );