Kaydet (Commit) 1ae23cec authored tarafından Andre Fischer's avatar Andre Fischer

#i48179# Fixed some Solaris compilation problems.

üst 5bb8c84f
...@@ -1216,8 +1216,8 @@ sal_Bool SlideShowImpl::previousEffect() throw (uno::RuntimeException) ...@@ -1216,8 +1216,8 @@ sal_Bool SlideShowImpl::previousEffect() throw (uno::RuntimeException)
{ {
return maEffectRewinder.rewind( return maEffectRewinder.rewind(
maScreenUpdater.createLock(false), maScreenUpdater.createLock(false),
::boost::bind<void>(&SlideShowImpl::redisplayCurrentSlide, this), ::boost::bind<void>(::boost::mem_fn(&SlideShowImpl::redisplayCurrentSlide), this),
::boost::bind<void>(&SlideShowImpl::rewindEffectToPreviousSlide, this)); ::boost::bind<void>(::boost::mem_fn(&SlideShowImpl::rewindEffectToPreviousSlide), this));
} }
} }
...@@ -2081,7 +2081,7 @@ void SlideShowImpl::notifySlideEnded (const bool bReverse) ...@@ -2081,7 +2081,7 @@ void SlideShowImpl::notifySlideEnded (const bool bReverse)
maListenerContainer.forEach<presentation::XSlideShowListener>( maListenerContainer.forEach<presentation::XSlideShowListener>(
boost::bind<void>( boost::bind<void>(
&presentation::XSlideShowListener::slideEnded, ::boost::mem_fn(&presentation::XSlideShowListener::slideEnded),
_1, _1,
sal_Bool(bReverse))); sal_Bool(bReverse)));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment