summaryrefslogtreecommitdiff
path: root/slideshow/source/engine
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
commit6d2662fc3cbd85d785ff68a48064d9eb68c2fe18 (patch)
tree4db729356ba214331e7d9591559051d264c7f4a4 /slideshow/source/engine
parentc1a90c55322944a9c674b69f00275d3dd6cfd51d (diff)
#i48179# Fixed some Solaris compilation problems.
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 088a0717c..5c2523462 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)));
}