diff options
author | Andre Fischer <af@openoffice.org> | 2009-11-03 09:26:54 +0000 |
---|---|---|
committer | Andre Fischer <af@openoffice.org> | 2009-11-03 09:26:54 +0000 |
commit | 6d2662fc3cbd85d785ff68a48064d9eb68c2fe18 (patch) | |
tree | 4db729356ba214331e7d9591559051d264c7f4a4 /slideshow/source/engine | |
parent | c1a90c55322944a9c674b69f00275d3dd6cfd51d (diff) |
#i48179# Fixed some Solaris compilation problems.
Diffstat (limited to 'slideshow/source/engine')
-rw-r--r-- | slideshow/source/engine/slideshowimpl.cxx | 6 |
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))); } |