summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-15 12:16:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-15 13:59:30 +0100
commit472285e742db5fed6d901162076d42c7d7c175af (patch)
treef40bb2d85ad0c4e26d6ff4b6197e08e111bd3eeb
parent323d10c7975c34125009694a42c476ce83f031c4 (diff)
StartPresentationMode nFlags takes PRESENTATION_* values
Change-Id: Ib922ebf1e547ff4d02c4fbaac6e6a81313a036ec
-rw-r--r--sd/source/ui/slideshow/slideshow.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/slideshow/slideshow.cxx b/sd/source/ui/slideshow/slideshow.cxx
index c736531b6d5a..8453275cd097 100644
--- a/sd/source/ui/slideshow/slideshow.cxx
+++ b/sd/source/ui/slideshow/slideshow.cxx
@@ -718,7 +718,7 @@ void SAL_CALL SlideShow::end() throw(RuntimeException)
WorkWindow* pWorkWindow = dynamic_cast<WorkWindow*>(pShell->GetViewFrame()->GetTopFrame().GetWindow().GetParent());
if( pWorkWindow )
{
- pWorkWindow->StartPresentationMode( sal_False, isAlwaysOnTop() );
+ pWorkWindow->StartPresentationMode( sal_False, isAlwaysOnTop() ? PRESENTATION_HIDEALLAPPS : 0 );
}
}
}