Kaydet (Commit) 4776da79 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

avmedia: sal_Bool -> bool

Change-Id: Ief9b2cc517e9c0666e656737cee9a953c676a1d9
üst 4f90623d
...@@ -76,8 +76,8 @@ private: ...@@ -76,8 +76,8 @@ private:
float mnUnmutedVolume; float mnUnmutedVolume;
double mnStopTime; double mnStopTime;
sal_Bool mbMuted; bool mbMuted;
sal_Bool mbInitialized; bool mbInitialized;
oslCondition maSizeCondition; oslCondition maSizeCondition;
}; };
......
...@@ -236,7 +236,7 @@ void SAL_CALL Player::setMute( sal_Bool bSet ) ...@@ -236,7 +236,7 @@ void SAL_CALL Player::setMute( sal_Bool bSet )
OSL_TRACE( "set mute: %d muted: %d unmuted volume: %lf", bSet, mbMuted, mnUnmutedVolume ); OSL_TRACE( "set mute: %d muted: %d unmuted volume: %lf", bSet, mbMuted, mnUnmutedVolume );
// change the volume to 0 or the unmuted volume // change the volume to 0 or the unmuted volume
if( mpMovie && mbMuted != bSet ) if( mpMovie && mbMuted != bool(bSet) )
{ {
[mpMovie setMuted: bSet ]; [mpMovie setMuted: bSet ];
mbMuted = bSet; mbMuted = bSet;
......
...@@ -34,7 +34,7 @@ void SAL_CALL VLCWindow::update() throw (css::uno::RuntimeException, std::except ...@@ -34,7 +34,7 @@ void SAL_CALL VLCWindow::update() throw (css::uno::RuntimeException, std::except
sal_Bool SAL_CALL VLCWindow::setZoomLevel( css::media::ZoomLevel eZoomLevel ) throw (css::uno::RuntimeException, std::exception) sal_Bool SAL_CALL VLCWindow::setZoomLevel( css::media::ZoomLevel eZoomLevel ) throw (css::uno::RuntimeException, std::exception)
{ {
sal_Bool bRet = false; bool bRet = false;
if( media::ZoomLevel_NOT_AVAILABLE != meZoomLevel && if( media::ZoomLevel_NOT_AVAILABLE != meZoomLevel &&
media::ZoomLevel_NOT_AVAILABLE != eZoomLevel ) media::ZoomLevel_NOT_AVAILABLE != eZoomLevel )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment