summaryrefslogtreecommitdiff
path: root/toolkit/source/awt/animatedimagespeer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/source/awt/animatedimagespeer.cxx')
-rw-r--r--toolkit/source/awt/animatedimagespeer.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/toolkit/source/awt/animatedimagespeer.cxx b/toolkit/source/awt/animatedimagespeer.cxx
index f0fd2cf0ec50..8ddbda4108ad 100644
--- a/toolkit/source/awt/animatedimagespeer.cxx
+++ b/toolkit/source/awt/animatedimagespeer.cxx
@@ -304,7 +304,7 @@ namespace toolkit
}
- void SAL_CALL AnimatedImagesPeer::startAnimation() throw (RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::startAnimation()
{
SolarMutexGuard aGuard;
VclPtr<Throbber> pThrobber = GetAsDynamic<Throbber>();
@@ -312,7 +312,7 @@ namespace toolkit
pThrobber->start();
}
- void SAL_CALL AnimatedImagesPeer::stopAnimation() throw (RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::stopAnimation()
{
SolarMutexGuard aGuard;
VclPtr<Throbber> pThrobber = GetAsDynamic<Throbber>();
@@ -320,7 +320,7 @@ namespace toolkit
pThrobber->stop();
}
- sal_Bool SAL_CALL AnimatedImagesPeer::isAnimationRunning() throw (RuntimeException, std::exception)
+ sal_Bool SAL_CALL AnimatedImagesPeer::isAnimationRunning()
{
SolarMutexGuard aGuard;
VclPtr<Throbber> pThrobber = GetAsDynamic<Throbber>();
@@ -329,7 +329,7 @@ namespace toolkit
return false;
}
- void SAL_CALL AnimatedImagesPeer::setProperty( const OUString& i_propertyName, const Any& i_value ) throw(RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::setProperty( const OUString& i_propertyName, const Any& i_value )
{
SolarMutexGuard aGuard;
@@ -374,7 +374,7 @@ namespace toolkit
}
- Any SAL_CALL AnimatedImagesPeer::getProperty( const OUString& i_propertyName ) throw(RuntimeException, std::exception)
+ Any SAL_CALL AnimatedImagesPeer::getProperty( const OUString& i_propertyName )
{
SolarMutexGuard aGuard;
@@ -430,7 +430,7 @@ namespace toolkit
}
- void SAL_CALL AnimatedImagesPeer::elementInserted( const ContainerEvent& i_event ) throw (RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::elementInserted( const ContainerEvent& i_event )
{
SolarMutexGuard aGuard;
Reference< XAnimatedImages > xAnimatedImages( i_event.Source, UNO_QUERY_THROW );
@@ -453,7 +453,7 @@ namespace toolkit
}
- void SAL_CALL AnimatedImagesPeer::elementRemoved( const ContainerEvent& i_event ) throw (RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::elementRemoved( const ContainerEvent& i_event )
{
SolarMutexGuard aGuard;
Reference< XAnimatedImages > xAnimatedImages( i_event.Source, UNO_QUERY_THROW );
@@ -472,7 +472,7 @@ namespace toolkit
}
- void SAL_CALL AnimatedImagesPeer::elementReplaced( const ContainerEvent& i_event ) throw (RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::elementReplaced( const ContainerEvent& i_event )
{
SolarMutexGuard aGuard;
Reference< XAnimatedImages > xAnimatedImages( i_event.Source, UNO_QUERY_THROW );
@@ -495,19 +495,19 @@ namespace toolkit
}
- void SAL_CALL AnimatedImagesPeer::disposing( const EventObject& i_event ) throw (RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::disposing( const EventObject& i_event )
{
VCLXWindow::disposing( i_event );
}
- void SAL_CALL AnimatedImagesPeer::modified( const EventObject& i_event ) throw (RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::modified( const EventObject& i_event )
{
impl_updateImages_nolck( i_event.Source );
}
- void SAL_CALL AnimatedImagesPeer::dispose( ) throw(RuntimeException, std::exception)
+ void SAL_CALL AnimatedImagesPeer::dispose( )
{
AnimatedImagesPeer_Base::dispose();
SolarMutexGuard aGuard;