avmedia/source/win/manager.hxx | 2 +- avmedia/source/win/player.cxx | 4 ++-- avmedia/source/win/player.hxx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-)
New commits: commit f5b299e6721bcc67bb1afe4995f2c26b41b6adac Author: Miklos Vajna <[email protected]> Date: Tue Sep 18 14:42:59 2012 +0200 avmedia: more sal_Bool -> bool reverts Change-Id: Ifca52136a90411a60dc11458f09670d72d5d70a7 diff --git a/avmedia/source/win/manager.hxx b/avmedia/source/win/manager.hxx index 51c10f1..6626010 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 b5e52d6..af9c770 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 21a9693..1647d1c 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); _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
