summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorAndre Fischer <af@openoffice.org>2009-10-20 08:39:11 +0000
committerAndre Fischer <af@openoffice.org>2009-10-20 08:39:11 +0000
commitd4813204c6341ee55f51975da46ac12a1a3069bc (patch)
tree18a21d29a1a63e27efd65be004871580ff9e2aac /slideshow
parent83168b2ff90cf04ee9f5b5f6408d184f2709f26e (diff)
#i48179# Resolved some compilation problems.
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/slideshowimpl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/source/engine/slideshowimpl.cxx b/slideshow/source/engine/slideshowimpl.cxx
index 88637a431282..18b3a8ef4102 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(&SlideShowImpl::redisplayCurrentSlide, this),
- ::boost::bind(&SlideShowImpl::rewindEffectToPreviousSlide, this));
+ ::boost::bind<void>(&SlideShowImpl::redisplayCurrentSlide, this),
+ ::boost::bind<void>(&SlideShowImpl::rewindEffectToPreviousSlide, this));
}
}
@@ -2080,10 +2080,10 @@ void SlideShowImpl::notifySlideEnded (const bool bReverse)
// GIF) will not be stopped.
maListenerContainer.forEach<presentation::XSlideShowListener>(
- boost::bind(
+ boost::bind<void>(
&presentation::XSlideShowListener::slideEnded,
_1,
- bReverse));
+ sal_Bool(bReverse)));
}
bool SlideShowImpl::notifyHyperLinkClicked( rtl::OUString const& hyperLink )