diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-09-18 11:03:32 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-09-18 11:05:04 +0200 |
commit | 988948cb8f94ca791baaa6374493b93b789ba3e9 (patch) | |
tree | 4750f54d8c3654e379e5113eb94acd5b347f4564 /avmedia | |
parent | 77e4adbe4759f21f6cf095d954391a9ddbbec2cf (diff) |
avmedia: problematic sal_Bool -> bool conversion when interacting with UNO
Change-Id: If6c52ed167a418f88d96b5d5a7319cd9a7bca11d
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/win/manager.cxx | 2 | ||||
-rw-r--r-- | avmedia/source/win/player.cxx | 8 | ||||
-rw-r--r-- | avmedia/source/win/player.hxx | 8 |
3 files changed, 9 insertions, 9 deletions
diff --git a/avmedia/source/win/manager.cxx b/avmedia/source/win/manager.cxx index ec6d083ae95c..877c6e2e9a8b 100644 --- a/avmedia/source/win/manager.cxx +++ b/avmedia/source/win/manager.cxx @@ -77,7 +77,7 @@ OUString SAL_CALL Manager::getImplementationName( ) // ------------------------------------------------------------------------------ -bool SAL_CALL Manager::supportsService( const OUString& ServiceName ) +sal_Bool SAL_CALL Manager::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException) { return ServiceName == AVMEDIA_WIN_MANAGER_SERVICENAME; diff --git a/avmedia/source/win/player.cxx b/avmedia/source/win/player.cxx index 51804718bf90..b5e52d68ed80 100644 --- a/avmedia/source/win/player.cxx +++ b/avmedia/source/win/player.cxx @@ -249,7 +249,7 @@ void SAL_CALL Player::stop( ) // ------------------------------------------------------------------------------ -bool SAL_CALL Player::isPlaying() +sal_Bool SAL_CALL Player::isPlaying() throw (uno::RuntimeException) { OAFilterState eFilterState; @@ -326,7 +326,7 @@ void SAL_CALL Player::setPlaybackLoop( bool bSet ) // ------------------------------------------------------------------------------ -bool SAL_CALL Player::isPlaybackLoop( ) +sal_Bool SAL_CALL Player::isPlaybackLoop( ) throw (uno::RuntimeException) { return mbLooping; @@ -346,7 +346,7 @@ void SAL_CALL Player::setMute( bool bSet ) // ------------------------------------------------------------------------------ -bool SAL_CALL Player::isMute( ) +sal_Bool SAL_CALL Player::isMute( ) throw (uno::RuntimeException) { return mbMuted; @@ -441,7 +441,7 @@ OUString SAL_CALL Player::getImplementationName( ) // ------------------------------------------------------------------------------ -bool SAL_CALL Player::supportsService( const OUString& ServiceName ) +sal_Bool SAL_CALL Player::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException) { return ServiceName == AVMEDIA_WIN_PLAYER_SERVICENAME; diff --git a/avmedia/source/win/player.hxx b/avmedia/source/win/player.hxx index dbf8506999fa..21a969394671 100644 --- a/avmedia/source/win/player.hxx +++ b/avmedia/source/win/player.hxx @@ -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 bool SAL_CALL isPlaying( ) throw (::com::sun::star::uno::RuntimeException); + virtual sal_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( bool bSet ) throw (::com::sun::star::uno::RuntimeException); - virtual bool SAL_CALL isPlaybackLoop( ) throw (::com::sun::star::uno::RuntimeException); + virtual sal_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 sal_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); @@ -88,7 +88,7 @@ public: // XServiceInfo 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 sal_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: |