summaryrefslogtreecommitdiffstats
path: root/slideshow/source/engine/slideshowimpl.cxx
diff options
context:
space:
mode:
authorAndre Fischer <af@openoffice.org>2009-11-03 09:26:54 +0000
committerAndre Fischer <af@openoffice.org>2009-11-03 09:26:54 +0000
commit1ae23cece0bf35ea52a15c66519a34c43ac57937 (patch)
tree6cdf222202c924f307ee2092dfc022cbc2a6b838 /slideshow/source/engine/slideshowimpl.cxx
parentslideshow1: merge with DEV300 m63 (diff)
downloadcore-1ae23cece0bf35ea52a15c66519a34c43ac57937.tar.gz
core-1ae23cece0bf35ea52a15c66519a34c43ac57937.zip
#i48179# Fixed some Solaris compilation problems.
Diffstat (limited to 'slideshow/source/engine/slideshowimpl.cxx')
-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)));
}