INTEGRATION: CWS dv03 (1.2.168); FILE MERGED

2008/03/04 09:41:52 dv 1.2.168.1: #i86416# Removed lots of using directives
This commit is contained in:
Kurt Zenker 2008-04-04 09:54:54 +00:00
parent 69c3becf35
commit 07b539f0df

View file

@ -4,9 +4,9 @@
* *
* $RCSfile: xsimpleanimation.cxx,v $ * $RCSfile: xsimpleanimation.cxx,v $
* *
* $Revision: 1.2 $ * $Revision: 1.3 $
* *
* last change: $Author: ihi $ $Date: 2006-12-20 13:52:39 $ * last change: $Author: kz $ $Date: 2008-04-04 10:54:54 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@ -55,11 +55,7 @@ namespace toolkit
{ {
//........................................................................ //........................................................................
using namespace ::com::sun::star::uno; using namespace ::com::sun::star;
using namespace ::com::sun::star::awt;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::graphic;
//==================================================================== //====================================================================
//= XSimpleAnimation //= XSimpleAnimation
@ -89,20 +85,20 @@ namespace toolkit
IMPLEMENT_FORWARD_XTYPEPROVIDER2( XSimpleAnimation, VCLXWindow, XSimpleAnimation_Base ) IMPLEMENT_FORWARD_XTYPEPROVIDER2( XSimpleAnimation, VCLXWindow, XSimpleAnimation_Base )
//-------------------------------------------------------------------- //--------------------------------------------------------------------
void SAL_CALL XSimpleAnimation::start() throw (RuntimeException) void SAL_CALL XSimpleAnimation::start() throw ( uno::RuntimeException )
{ {
mpThrobber->start(); mpThrobber->start();
} }
//-------------------------------------------------------------------- //--------------------------------------------------------------------
void SAL_CALL XSimpleAnimation::stop() throw (RuntimeException) void SAL_CALL XSimpleAnimation::stop() throw ( uno::RuntimeException )
{ {
mpThrobber->stop(); mpThrobber->stop();
} }
//-------------------------------------------------------------------- //--------------------------------------------------------------------
void SAL_CALL XSimpleAnimation::setImageList( const Sequence< Reference< XGraphic > >& rImageList ) void SAL_CALL XSimpleAnimation::setImageList( const uno::Sequence< uno::Reference< graphic::XGraphic > >& rImageList )
throw (RuntimeException) throw ( uno::RuntimeException )
{ {
mpThrobber->setImageList( rImageList ); mpThrobber->setImageList( rImageList );
} }
@ -121,7 +117,8 @@ namespace toolkit
} }
//-------------------------------------------------------------------- //--------------------------------------------------------------------
void SAL_CALL XSimpleAnimation::setProperty( const ::rtl::OUString& PropertyName, const Any& Value ) throw(RuntimeException) void SAL_CALL XSimpleAnimation::setProperty( const ::rtl::OUString& PropertyName, const uno::Any& Value )
throw( uno::RuntimeException )
{ {
::vos::OGuard aGuard( GetMutex() ); ::vos::OGuard aGuard( GetMutex() );
@ -156,11 +153,12 @@ namespace toolkit
} }
//-------------------------------------------------------------------- //--------------------------------------------------------------------
Any SAL_CALL XSimpleAnimation::getProperty( const ::rtl::OUString& PropertyName ) throw(RuntimeException) uno::Any SAL_CALL XSimpleAnimation::getProperty( const ::rtl::OUString& PropertyName )
throw( uno::RuntimeException )
{ {
::vos::OGuard aGuard( GetMutex() ); ::vos::OGuard aGuard( GetMutex() );
Any aReturn; uno::Any aReturn;
if ( GetWindow() ) if ( GetWindow() )
{ {