summaryrefslogtreecommitdiff
path: root/sd/source/ui/slideshow/slideshowimpl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slideshow/slideshowimpl.cxx')
-rw-r--r--sd/source/ui/slideshow/slideshowimpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/slideshow/slideshowimpl.cxx b/sd/source/ui/slideshow/slideshowimpl.cxx
index 2da56df510a4..91751a91f24b 100644
--- a/sd/source/ui/slideshow/slideshowimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowimpl.cxx
@@ -815,12 +815,12 @@ bool SlideshowImpl::startPreview(
Sequence< beans::PropertyValue > aProperties(nPropertyCount);
aProperties[0].Name = "AutomaticAdvancement";
- aProperties[0].Value = uno::makeAny( (double)1.0 ); // one second timeout
+ aProperties[0].Value <<= (double)1.0; // one second timeout
if( mxPreviewAnimationNode.is() )
{
aProperties[1].Name = "NoSlideTransitions";
- aProperties[1].Value = uno::makeAny( true );
+ aProperties[1].Value <<= true;
}
bRet = startShowImpl( aProperties );