summaryrefslogtreecommitdiff
path: root/slideshow/source/engine
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine')
-rw-r--r--slideshow/source/engine/slideshowimpl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/slideshow/source/engine/slideshowimpl.cxx b/slideshow/source/engine/slideshowimpl.cxx
index 18b3a8ef4102..109e64ca63c1 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<void>(&SlideShowImpl::redisplayCurrentSlide, this),
- ::boost::bind<void>(&SlideShowImpl::rewindEffectToPreviousSlide, this));
+ ::boost::bind<void>(::boost::mem_fn(&SlideShowImpl::redisplayCurrentSlide), this),
+ ::boost::bind<void>(::boost::mem_fn(&SlideShowImpl::rewindEffectToPreviousSlide), this));
}
}
@@ -2081,7 +2081,7 @@ void SlideShowImpl::notifySlideEnded (const bool bReverse)
maListenerContainer.forEach<presentation::XSlideShowListener>(
boost::bind<void>(
- &presentation::XSlideShowListener::slideEnded,
+ ::boost::mem_fn(&presentation::XSlideShowListener::slideEnded),
_1,
sal_Bool(bReverse)));
}