Kaydet (Commit) f2154c68 authored tarafından Ariel Constenla-Haile's avatar Ariel Constenla-Haile

i53749 - Show Pause logo according to presentation settings

Original author: Tsutomu Uchino <hanya.runo at gmail.com>
üst 7da37198
...@@ -3320,8 +3320,13 @@ void SAL_CALL SlideshowImpl::gotoNextSlide( ) throw (RuntimeException) ...@@ -3320,8 +3320,13 @@ void SAL_CALL SlideshowImpl::gotoNextSlide( ) throw (RuntimeException)
{ {
if( mpShowWindow ) if( mpShowWindow )
{ {
Graphic aGraphic( SfxApplication::GetApplicationLogo().GetBitmapEx() ); if ( maPresSettings.mbShowPauseLogo )
mpShowWindow->SetPauseMode( 0, maPresSettings.mnPauseTimeout, &aGraphic ); {
Graphic aGraphic( SfxApplication::GetApplicationLogo().GetBitmapEx() );
mpShowWindow->SetPauseMode( 0, maPresSettings.mnPauseTimeout, &aGraphic );
}
else
mpShowWindow->SetPauseMode( 0, maPresSettings.mnPauseTimeout );
} }
} }
else else
......
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