diff options
author | Ricardo Montania <ricardo@linuxafundo.com.br> | 2012-09-25 21:31:26 -0300 |
---|---|---|
committer | Noel Power <noel.power@suse.com> | 2012-09-26 09:42:32 +0000 |
commit | 9b65ecc37f8e3cdd81bdb3399c5f72496394df9d (patch) | |
tree | a3e1d294e1cc47f8999d9872b90bb21a8d7f1fe8 /avmedia/inc | |
parent | 4e0e0d4759cc0f1b2c5ea3c64d2421c1a0dbe87e (diff) |
sal_Bool to bool and some rtl::OUStrings in avmedia
Change-Id: Id58fd5d04f47302983782eb57736ff29d8f5303e
Reviewed-on: https://gerrit.libreoffice.org/697
Tested-by: Noel Power <noel.power@suse.com>
Reviewed-by: Noel Power <noel.power@suse.com>
Diffstat (limited to 'avmedia/inc')
-rw-r--r-- | avmedia/inc/avmedia/mediaitem.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/avmedia/inc/avmedia/mediaitem.hxx b/avmedia/inc/avmedia/mediaitem.hxx index 6cf0063ed25b..c6d0f5b4fee1 100644 --- a/avmedia/inc/avmedia/mediaitem.hxx +++ b/avmedia/inc/avmedia/mediaitem.hxx @@ -93,11 +93,11 @@ public: void setTime( double fTime ); double getTime() const; - void setLoop( sal_Bool bLoop ); - sal_Bool isLoop() const; + void setLoop( bool bLoop ); + bool isLoop() const; - void setMute( sal_Bool bMute ); - sal_Bool isMute() const; + void setMute( bool bMute ); + bool isMute() const; void setVolumeDB( sal_Int16 nDB ); sal_Int16 getVolumeDB() const; |