diff options
Diffstat (limited to 'slideshow/source')
-rw-r--r-- | slideshow/source/engine/slideshowimpl.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/source/engine/slideshowimpl.cxx b/slideshow/source/engine/slideshowimpl.cxx index 88637a431282..18b3a8ef4102 100644 --- a/slideshow/source/engine/slideshowimpl.cxx +++ b/slideshow/source/engine/slideshowimpl.cxx @@ -1216,8 +1216,8 @@ sal_Bool SlideShowImpl::previousEffect() throw (uno::RuntimeException) { return maEffectRewinder.rewind( maScreenUpdater.createLock(false), - ::boost::bind(&SlideShowImpl::redisplayCurrentSlide, this), - ::boost::bind(&SlideShowImpl::rewindEffectToPreviousSlide, this)); + ::boost::bind<void>(&SlideShowImpl::redisplayCurrentSlide, this), + ::boost::bind<void>(&SlideShowImpl::rewindEffectToPreviousSlide, this)); } } @@ -2080,10 +2080,10 @@ void SlideShowImpl::notifySlideEnded (const bool bReverse) // GIF) will not be stopped. maListenerContainer.forEach<presentation::XSlideShowListener>( - boost::bind( + boost::bind<void>( &presentation::XSlideShowListener::slideEnded, _1, - bReverse)); + sal_Bool(bReverse))); } bool SlideShowImpl::notifyHyperLinkClicked( rtl::OUString const& hyperLink ) |