From 4d362d2362661670579c03bdccf0063ee6569604 Mon Sep 17 00:00:00 2001 From: Ariel Constenla-Haile Date: Mon, 28 May 2012 15:23:23 +0000 Subject: i53749 - Show Pause logo according to presentation settings Original author: Tsutomu Uchino --- sd/source/ui/slideshow/slideshowimpl.cxx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'sd/source/ui/slideshow') diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx index 15d2cc59b371..b21e0850bde3 100644 --- a/sd/source/ui/slideshow/slideshowimpl.cxx +++ b/sd/source/ui/slideshow/slideshowimpl.cxx @@ -3219,8 +3219,13 @@ void SAL_CALL SlideshowImpl::gotoNextSlide( ) throw (RuntimeException) { if( mpShowWindow ) { - Graphic aGraphic( SfxApplication::GetApplicationLogo().GetBitmapEx() ); - mpShowWindow->SetPauseMode( 0, maPresSettings.mnPauseTimeout, &aGraphic ); + if ( maPresSettings.mbShowPauseLogo ) + { + Graphic aGraphic( SfxApplication::GetApplicationLogo().GetBitmapEx() ); + mpShowWindow->SetPauseMode( 0, maPresSettings.mnPauseTimeout, &aGraphic ); + } + else + mpShowWindow->SetPauseMode( 0, maPresSettings.mnPauseTimeout ); } } else -- cgit