diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-09-18 14:42:59 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-09-18 14:44:24 +0200 |
commit | f5b299e6721bcc67bb1afe4995f2c26b41b6adac (patch) | |
tree | 3bb22477cc75c4695a12abe940e7fc7ead8b3e37 /avmedia | |
parent | 1fe4aa6ed810d1be7b81875977da1da33e9fe4bf (diff) |
avmedia: more sal_Bool -> bool reverts
Change-Id: Ifca52136a90411a60dc11458f09670d72d5d70a7
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/win/manager.hxx | 2 | ||||
-rw-r--r-- | avmedia/source/win/player.cxx | 4 | ||||
-rw-r--r-- | avmedia/source/win/player.hxx | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/avmedia/source/win/manager.hxx b/avmedia/source/win/manager.hxx index 51c10f185860..662601089ad4 100644 --- a/avmedia/source/win/manager.hxx +++ b/avmedia/source/win/manager.hxx @@ -52,7 +52,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: diff --git a/avmedia/source/win/player.cxx b/avmedia/source/win/player.cxx index b5e52d68ed80..af9c770a3a3c 100644 --- a/avmedia/source/win/player.cxx +++ b/avmedia/source/win/player.cxx @@ -318,7 +318,7 @@ double SAL_CALL Player::getRate( ) // ------------------------------------------------------------------------------ -void SAL_CALL Player::setPlaybackLoop( bool bSet ) +void SAL_CALL Player::setPlaybackLoop( sal_Bool bSet ) throw (uno::RuntimeException) { mbLooping = bSet; @@ -334,7 +334,7 @@ sal_Bool SAL_CALL Player::isPlaybackLoop( ) // ------------------------------------------------------------------------------ -void SAL_CALL Player::setMute( bool bSet ) +void SAL_CALL Player::setMute( sal_Bool bSet ) throw (uno::RuntimeException) { if( mpBA && ( mbMuted != bSet ) ) diff --git a/avmedia/source/win/player.hxx b/avmedia/source/win/player.hxx index 21a969394671..1647d1c52710 100644 --- a/avmedia/source/win/player.hxx +++ b/avmedia/source/win/player.hxx @@ -76,9 +76,9 @@ public: 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 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( bool bSet ) 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 setVolumeDB( sal_Int16 nVolumeDB ) throw (::com::sun::star::uno::RuntimeException); virtual sal_Int16 SAL_CALL getVolumeDB( ) throw (::com::sun::star::uno::RuntimeException); |