summaryrefslogtreecommitdiff
path: root/svtools/source/uno/statusbarcontroller.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/uno/statusbarcontroller.cxx')
-rw-r--r--svtools/source/uno/statusbarcontroller.cxx16
1 files changed, 1 insertions, 15 deletions
diff --git a/svtools/source/uno/statusbarcontroller.cxx b/svtools/source/uno/statusbarcontroller.cxx
index d2ae6a6b8c85..8bb37ea27ae7 100644
--- a/svtools/source/uno/statusbarcontroller.cxx
+++ b/svtools/source/uno/statusbarcontroller.cxx
@@ -94,7 +94,6 @@ Reference< XURLTransformer > StatusbarController::getURLTransformer() const
// XInterface
Any SAL_CALL StatusbarController::queryInterface( const Type& rType )
-throw ( RuntimeException, std::exception )
{
Any a = ::cppu::queryInterface(
rType ,
@@ -122,7 +121,6 @@ void SAL_CALL StatusbarController::release() throw ()
}
void SAL_CALL StatusbarController::initialize( const Sequence< Any >& aArguments )
-throw ( Exception, RuntimeException, std::exception )
{
bool bInitialized( true );
@@ -171,7 +169,6 @@ throw ( Exception, RuntimeException, std::exception )
}
void SAL_CALL StatusbarController::update()
-throw ( RuntimeException, std::exception )
{
{
SolarMutexGuard aSolarMutexGuard;
@@ -185,7 +182,6 @@ throw ( RuntimeException, std::exception )
// XComponent
void SAL_CALL StatusbarController::dispose()
-throw (css::uno::RuntimeException, std::exception)
{
Reference< XComponent > xThis( static_cast< OWeakObject* >(this), UNO_QUERY );
@@ -235,20 +231,17 @@ throw (css::uno::RuntimeException, std::exception)
}
void SAL_CALL StatusbarController::addEventListener( const Reference< XEventListener >& xListener )
-throw ( RuntimeException, std::exception )
{
m_aListenerContainer.addInterface( cppu::UnoType<XEventListener>::get(), xListener );
}
void SAL_CALL StatusbarController::removeEventListener( const Reference< XEventListener >& aListener )
-throw ( RuntimeException, std::exception )
{
m_aListenerContainer.removeInterface( cppu::UnoType<XEventListener>::get(), aListener );
}
// XEventListener
void SAL_CALL StatusbarController::disposing( const EventObject& Source )
-throw ( RuntimeException, std::exception )
{
SolarMutexGuard aSolarMutexGuard;
@@ -279,7 +272,6 @@ throw ( RuntimeException, std::exception )
// XStatusListener
void SAL_CALL StatusbarController::statusChanged( const FeatureStateEvent& Event )
-throw ( RuntimeException, std::exception )
{
SolarMutexGuard aSolarMutexGuard;
@@ -302,21 +294,18 @@ throw ( RuntimeException, std::exception )
// XStatusbarController
sal_Bool SAL_CALL StatusbarController::mouseButtonDown(
const css::awt::MouseEvent& )
-throw (css::uno::RuntimeException, std::exception)
{
return false;
}
sal_Bool SAL_CALL StatusbarController::mouseMove(
const css::awt::MouseEvent& )
-throw (css::uno::RuntimeException, std::exception)
{
return false;
}
sal_Bool SAL_CALL StatusbarController::mouseButtonUp(
const css::awt::MouseEvent& )
-throw (css::uno::RuntimeException, std::exception)
{
return false;
}
@@ -326,7 +315,6 @@ void SAL_CALL StatusbarController::command(
::sal_Int32,
sal_Bool,
const css::uno::Any& )
-throw (css::uno::RuntimeException, std::exception)
{
}
@@ -334,16 +322,14 @@ void SAL_CALL StatusbarController::paint(
const css::uno::Reference< css::awt::XGraphics >&,
const css::awt::Rectangle&,
::sal_Int32 )
-throw (css::uno::RuntimeException, std::exception)
{
}
void SAL_CALL StatusbarController::click( const css::awt::Point& )
-throw (css::uno::RuntimeException, std::exception)
{
}
-void SAL_CALL StatusbarController::doubleClick( const css::awt::Point& ) throw (css::uno::RuntimeException, std::exception)
+void SAL_CALL StatusbarController::doubleClick( const css::awt::Point& )
{
SolarMutexGuard aSolarMutexGuard;