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

#i48179# Resolved some compilation problems.

üst 83168b2f
...@@ -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(&SlideShowImpl::redisplayCurrentSlide, this), ::boost::bind<void>(&SlideShowImpl::redisplayCurrentSlide, this),
::boost::bind(&SlideShowImpl::rewindEffectToPreviousSlide, this)); ::boost::bind<void>(&SlideShowImpl::rewindEffectToPreviousSlide, this));
} }
} }
...@@ -2080,10 +2080,10 @@ void SlideShowImpl::notifySlideEnded (const bool bReverse) ...@@ -2080,10 +2080,10 @@ void SlideShowImpl::notifySlideEnded (const bool bReverse)
// GIF) will not be stopped. // GIF) will not be stopped.
maListenerContainer.forEach<presentation::XSlideShowListener>( maListenerContainer.forEach<presentation::XSlideShowListener>(
boost::bind( boost::bind<void>(
&presentation::XSlideShowListener::slideEnded, &presentation::XSlideShowListener::slideEnded,
_1, _1,
bReverse)); sal_Bool(bReverse)));
} }
bool SlideShowImpl::notifyHyperLinkClicked( rtl::OUString const& hyperLink ) bool SlideShowImpl::notifyHyperLinkClicked( rtl::OUString const& hyperLink )
......
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