summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-08-28 05:51:05 +0000
committerRüdiger Timm <rt@openoffice.org>2008-08-28 05:51:05 +0000
commitbd7ad4bc40c4d7ff94d75fbafbde0f6b3689be25 (patch)
treec8611901ae27e6e00ce172663bfab2e15a95e707 /sd
parent2a471e8d4ba1059ff5af858f0f687cd9b4c62a99 (diff)
INTEGRATION: CWS impress153_DEV300 (1.31.78); FILE MERGED
2008/08/20 08:33:10 cl 1.31.78.1: #i92901# fixed rehearse timings
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/view/outlnvs2.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/sd/source/ui/view/outlnvs2.cxx b/sd/source/ui/view/outlnvs2.cxx
index 02996b8c6e04..9ec239fbde87 100644
--- a/sd/source/ui/view/outlnvs2.cxx
+++ b/sd/source/ui/view/outlnvs2.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: outlnvs2.cxx,v $
- * $Revision: 1.31 $
+ * $Revision: 1.32 $
*
* This file is part of OpenOffice.org.
*
@@ -217,12 +217,18 @@ void OutlineViewShell::FuTemporary(SfxRequest &rReq)
break;
case SID_PRESENTATION:
+ case SID_REHEARSE_TIMINGS:
{
pOlView->PrepareClose();
Reference< XPresentation2 > xPresentation( GetDoc()->getPresentation() );
if( xPresentation.is() )
- xPresentation->start();
+ {
+ if( ( SID_REHEARSE_TIMINGS != rReq.GetSlot() ) )
+ xPresentation->start();
+ else
+ xPresentation->rehearseTimings();
+ }
rReq.Done();
}
break;