diff options
author | Ricardo Montania <ricardo@linuxafundo.com.br> | 2012-09-17 23:02:45 -0300 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-09-18 08:26:27 +0000 |
commit | a60c63fd66a5a2069ea812f94c000dc4273e8ceb (patch) | |
tree | b8f39aecb0f0b104ced0d35ab557bd90d2af9832 /avmedia/source/win | |
parent | 082155566a88b470da1fa197c264fff6cacc32f5 (diff) |
corrections ::rtl::OUString, sal_Bool and macros, in avmedia
Change-Id: Iae12f009a358ef8d648f094db968dae25f0c14a0
Reviewed-on: https://gerrit.libreoffice.org/636
Reviewed-by: Miklos Vajna <vmiklos@suse.cz>
Tested-by: Miklos Vajna <vmiklos@suse.cz>
Diffstat (limited to 'avmedia/source/win')
-rw-r--r-- | avmedia/source/win/manager.cxx | 14 | ||||
-rw-r--r-- | avmedia/source/win/manager.hxx | 8 | ||||
-rw-r--r-- | avmedia/source/win/player.cxx | 26 | ||||
-rw-r--r-- | avmedia/source/win/player.hxx | 24 | ||||
-rw-r--r-- | avmedia/source/win/winuno.cxx | 6 |
5 files changed, 39 insertions, 39 deletions
diff --git a/avmedia/source/win/manager.cxx b/avmedia/source/win/manager.cxx index 3a189cd5b5a9..ec6d083ae95c 100644 --- a/avmedia/source/win/manager.cxx +++ b/avmedia/source/win/manager.cxx @@ -54,7 +54,7 @@ Manager::~Manager() // ------------------------------------------------------------------------------ -uno::Reference< media::XPlayer > SAL_CALL Manager::createPlayer( const ::rtl::OUString& rURL ) +uno::Reference< media::XPlayer > SAL_CALL Manager::createPlayer( const OUString& rURL ) throw (uno::RuntimeException) { Player* pPlayer( new Player( mxMgr ) ); @@ -69,15 +69,15 @@ uno::Reference< media::XPlayer > SAL_CALL Manager::createPlayer( const ::rtl::OU // ------------------------------------------------------------------------------ -::rtl::OUString SAL_CALL Manager::getImplementationName( ) +OUString SAL_CALL Manager::getImplementationName( ) throw (uno::RuntimeException) { - return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( AVMEDIA_WIN_MANAGER_IMPLEMENTATIONNAME ) ); + return OUString( AVMEDIA_WIN_MANAGER_IMPLEMENTATIONNAME ); } // ------------------------------------------------------------------------------ -sal_Bool SAL_CALL Manager::supportsService( const ::rtl::OUString& ServiceName ) +bool SAL_CALL Manager::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException) { return ServiceName == AVMEDIA_WIN_MANAGER_SERVICENAME; @@ -85,11 +85,11 @@ sal_Bool SAL_CALL Manager::supportsService( const ::rtl::OUString& ServiceName ) // ------------------------------------------------------------------------------ -uno::Sequence< ::rtl::OUString > SAL_CALL Manager::getSupportedServiceNames( ) +uno::Sequence< OUString > SAL_CALL Manager::getSupportedServiceNames( ) throw (uno::RuntimeException) { - uno::Sequence< ::rtl::OUString > aRet(1); - aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( AVMEDIA_WIN_MANAGER_SERVICENAME ) ); + uno::Sequence< OUString > aRet(1); + aRet[0] = AVMEDIA_WIN_MANAGER_SERVICENAME ; return aRet; } diff --git a/avmedia/source/win/manager.hxx b/avmedia/source/win/manager.hxx index 7a73e328d4bd..51c10f185860 100644 --- a/avmedia/source/win/manager.hxx +++ b/avmedia/source/win/manager.hxx @@ -48,12 +48,12 @@ public: ~Manager(); // XManager - virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer > SAL_CALL createPlayer( const ::rtl::OUString& aURL ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XPlayer > SAL_CALL createPlayer( const OUString& aURL ) throw (::com::sun::star::uno::RuntimeException); // XServiceInfo - virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); - virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); - virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); + virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); + virtual bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); private: ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > mxMgr; diff --git a/avmedia/source/win/player.cxx b/avmedia/source/win/player.cxx index 50e77379f610..51804718bf90 100644 --- a/avmedia/source/win/player.cxx +++ b/avmedia/source/win/player.cxx @@ -125,7 +125,7 @@ Player::~Player() // ------------------------------------------------------------------------------ -bool Player::create( const ::rtl::OUString& rURL ) +bool Player::create( const OUString& rURL ) { HRESULT hR; bool bRet = false; @@ -169,7 +169,7 @@ bool Player::create( const ::rtl::OUString& rURL ) if( bRet ) maURL = rURL; else - maURL = ::rtl::OUString(); + maURL = OUString(); return bRet; } @@ -249,7 +249,7 @@ void SAL_CALL Player::stop( ) // ------------------------------------------------------------------------------ -sal_Bool SAL_CALL Player::isPlaying() +bool SAL_CALL Player::isPlaying() throw (uno::RuntimeException) { OAFilterState eFilterState; @@ -318,7 +318,7 @@ double SAL_CALL Player::getRate( ) // ------------------------------------------------------------------------------ -void SAL_CALL Player::setPlaybackLoop( sal_Bool bSet ) +void SAL_CALL Player::setPlaybackLoop( bool bSet ) throw (uno::RuntimeException) { mbLooping = bSet; @@ -326,7 +326,7 @@ void SAL_CALL Player::setPlaybackLoop( sal_Bool bSet ) // ------------------------------------------------------------------------------ -sal_Bool SAL_CALL Player::isPlaybackLoop( ) +bool SAL_CALL Player::isPlaybackLoop( ) throw (uno::RuntimeException) { return mbLooping; @@ -334,7 +334,7 @@ sal_Bool SAL_CALL Player::isPlaybackLoop( ) // ------------------------------------------------------------------------------ -void SAL_CALL Player::setMute( sal_Bool bSet ) +void SAL_CALL Player::setMute( bool bSet ) throw (uno::RuntimeException) { if( mpBA && ( mbMuted != bSet ) ) @@ -346,7 +346,7 @@ void SAL_CALL Player::setMute( sal_Bool bSet ) // ------------------------------------------------------------------------------ -sal_Bool SAL_CALL Player::isMute( ) +bool SAL_CALL Player::isMute( ) throw (uno::RuntimeException) { return mbMuted; @@ -433,15 +433,15 @@ uno::Reference< media::XFrameGrabber > SAL_CALL Player::createFrameGrabber( ) // ------------------------------------------------------------------------------ -::rtl::OUString SAL_CALL Player::getImplementationName( ) +OUString SAL_CALL Player::getImplementationName( ) throw (uno::RuntimeException) { - return ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( AVMEDIA_WIN_PLAYER_IMPLEMENTATIONNAME ) ); + return OUString( AVMEDIA_WIN_PLAYER_IMPLEMENTATIONNAME ); } // ------------------------------------------------------------------------------ -sal_Bool SAL_CALL Player::supportsService( const ::rtl::OUString& ServiceName ) +bool SAL_CALL Player::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException) { return ServiceName == AVMEDIA_WIN_PLAYER_SERVICENAME; @@ -449,11 +449,11 @@ sal_Bool SAL_CALL Player::supportsService( const ::rtl::OUString& ServiceName ) // ------------------------------------------------------------------------------ -uno::Sequence< ::rtl::OUString > SAL_CALL Player::getSupportedServiceNames( ) +uno::Sequence< OUString > SAL_CALL Player::getSupportedServiceNames( ) throw (uno::RuntimeException) { - uno::Sequence< ::rtl::OUString > aRet(1); - aRet[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM ( AVMEDIA_WIN_PLAYER_SERVICENAME ) ); + uno::Sequence< OUString > aRet(1); + aRet[0] = AVMEDIA_WIN_PLAYER_SERVICENAME ; return aRet; } diff --git a/avmedia/source/win/player.hxx b/avmedia/source/win/player.hxx index 61adf52b54e9..dbf8506999fa 100644 --- a/avmedia/source/win/player.hxx +++ b/avmedia/source/win/player.hxx @@ -60,7 +60,7 @@ public: Player( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& rxMgr ); ~Player(); - bool create( const ::rtl::OUString& rURL ); + bool create( const OUString& rURL ); void setNotifyWnd( int nNotifyWnd ); void setDDrawParams( IDirectDraw* pDDraw, IDirectDrawSurface* pDDrawSurface ); @@ -71,15 +71,15 @@ public: // XPlayer virtual void SAL_CALL start( ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL stop( ) throw (::com::sun::star::uno::RuntimeException); - virtual sal_Bool SAL_CALL isPlaying( ) throw (::com::sun::star::uno::RuntimeException); + virtual bool SAL_CALL isPlaying( ) throw (::com::sun::star::uno::RuntimeException); virtual double SAL_CALL getDuration( ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL setMediaTime( double fTime ) throw (::com::sun::star::uno::RuntimeException); virtual double SAL_CALL getMediaTime( ) throw (::com::sun::star::uno::RuntimeException); virtual double SAL_CALL getRate( ) throw (::com::sun::star::uno::RuntimeException); - virtual void SAL_CALL setPlaybackLoop( sal_Bool bSet ) throw (::com::sun::star::uno::RuntimeException); - virtual sal_Bool SAL_CALL isPlaybackLoop( ) throw (::com::sun::star::uno::RuntimeException); - virtual void SAL_CALL setMute( sal_Bool bSet ) throw (::com::sun::star::uno::RuntimeException); - virtual sal_Bool SAL_CALL isMute( ) throw (::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL setPlaybackLoop( bool bSet ) throw (::com::sun::star::uno::RuntimeException); + virtual bool SAL_CALL isPlaybackLoop( ) throw (::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL setMute( bool bSet ) throw (::com::sun::star::uno::RuntimeException); + virtual bool SAL_CALL isMute( ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL setVolumeDB( sal_Int16 nVolumeDB ) throw (::com::sun::star::uno::RuntimeException); virtual sal_Int16 SAL_CALL getVolumeDB( ) throw (::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::awt::Size SAL_CALL getPreferredPlayerWindowSize( ) throw (::com::sun::star::uno::RuntimeException); @@ -87,15 +87,15 @@ public: virtual ::com::sun::star::uno::Reference< ::com::sun::star::media::XFrameGrabber > SAL_CALL createFrameGrabber( ) throw (::com::sun::star::uno::RuntimeException); // XServiceInfo - virtual ::rtl::OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); - virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); - virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); + virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException); + virtual bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException); private: ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > mxMgr; - ::rtl::OUString maURL; + OUString maURL; IGraphBuilder* mpGB; IBaseFilter* mpOMF; IMediaControl* mpMC; @@ -107,8 +107,8 @@ private: IVideoWindow* mpVW; IDDrawExclModeVideo* mpEV; long mnUnmutedVolume; - sal_Bool mbMuted; - sal_Bool mbLooping; + bool mbMuted; + bool mbLooping; void ImplLayoutVideoWindow(); }; diff --git a/avmedia/source/win/winuno.cxx b/avmedia/source/win/winuno.cxx index c3d66c586331..3cd3946a1844 100644 --- a/avmedia/source/win/winuno.cxx +++ b/avmedia/source/win/winuno.cxx @@ -47,12 +47,12 @@ extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL component_getFactory( const sal_C if( rtl_str_compare( pImplName, "com.sun.star.comp.avmedia.Manager_DirectX" ) == 0 ) { - const ::rtl::OUString aServiceName( ::rtl::OUString("com.sun.star.media.Manager_DirectX" ) ); + const OUString aServiceName( "com.sun.star.media.Manager_DirectX" ); xFactory = uno::Reference< lang::XSingleServiceFactory >( ::cppu::createSingleFactory( reinterpret_cast< lang::XMultiServiceFactory* >( pServiceManager ), - ::rtl::OUString("com.sun.star.comp.avmedia.Manager_DirectX" ), - create_MediaPlayer, uno::Sequence< ::rtl::OUString >( &aServiceName, 1 ) ) ); + OUString("com.sun.star.comp.avmedia.Manager_DirectX" ), + create_MediaPlayer, uno::Sequence< OUString >( &aServiceName, 1 ) ) ); } if( xFactory.is() ) |