diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-03-16 17:30:29 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-03-16 21:25:17 +0000 |
commit | 918f8ed91e325606a44d088da5fbbf8c463dffba (patch) | |
tree | c44b3ccf10b0325aa85a3ea5830a87dea5edb1a2 /sd | |
parent | 4d362d2362661670579c03bdccf0063ee6569604 (diff) |
"show logo" in slideshow settings doesn't do anything
This wants to load about.png which doesn't exist anymore. "about.svg" does,
but is a rather abstract background image for the about dialog these days, so
use "flat_logo.svg" instead.
Which requires moving the svg loader out of cui into sfx2 for re-use.
Change-Id: I8654f0f93766556ef4ed4b87eff35b45d8189761
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/slideshow/slideshowimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx index b21e0850bde3..88f282a0c3d7 100644 --- a/sd/source/ui/slideshow/slideshowimpl.cxx +++ b/sd/source/ui/slideshow/slideshowimpl.cxx @@ -3221,7 +3221,7 @@ void SAL_CALL SlideshowImpl::gotoNextSlide( ) throw (RuntimeException) { if ( maPresSettings.mbShowPauseLogo ) { - Graphic aGraphic( SfxApplication::GetApplicationLogo().GetBitmapEx() ); + Graphic aGraphic(SfxApplication::GetApplicationLogo(360)); mpShowWindow->SetPauseMode( 0, maPresSettings.mnPauseTimeout, &aGraphic ); } else |