summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/effectrewinder.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-08-03 17:20:26 +0200
committerMichael Stahl <mstahl@redhat.com>2015-08-03 17:20:26 +0200
commit38a4b5ea2ab7188ce61d18c655893482dd098772 (patch)
treebcd99d182901164ebdec9a57ba9a5deba435b729 /slideshow/source/engine/effectrewinder.cxx
parent81f94ae79c7f5f3b49427dc7a8063a08baa797cf (diff)
slideshow: try to fix libc++/MSVC build by replacing boost::bind
Change-Id: I6418119f9d3e70ea89f7c8a094bbde42eeadec8c
Diffstat (limited to 'slideshow/source/engine/effectrewinder.cxx')
-rw-r--r--slideshow/source/engine/effectrewinder.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/source/engine/effectrewinder.cxx b/slideshow/source/engine/effectrewinder.cxx
index 2b2bbfbbc324..af589c2bc0e7 100644
--- a/slideshow/source/engine/effectrewinder.cxx
+++ b/slideshow/source/engine/effectrewinder.cxx
@@ -198,7 +198,7 @@ bool EffectRewinder::rewind (
// No main sequence effects to rewind on the current slide.
// Go back to the previous slide.
mpAsynchronousRewindEvent = makeEvent(
- ::boost::bind(
+ ::std::bind(
&EffectRewinder::asynchronousRewindToPreviousSlide,
this,
rPreviousSlideFunctor),
@@ -209,7 +209,7 @@ bool EffectRewinder::rewind (
// The actual rewinding is done asynchronously so that we can safely
// call other methods.
mpAsynchronousRewindEvent = makeEvent(
- ::boost::bind(
+ ::std::bind(
&EffectRewinder::asynchronousRewind,
this,
nSkipCount,
@@ -238,7 +238,7 @@ void EffectRewinder::skipAllMainSequenceEffects()
const int nTotalMainSequenceEffectCount (countMainSequenceEffects());
mpAsynchronousRewindEvent = makeEvent(
- ::boost::bind(
+ ::std::bind(
&EffectRewinder::asynchronousRewind,
this,
nTotalMainSequenceEffectCount,
@@ -365,7 +365,7 @@ void EffectRewinder::asynchronousRewind (
if (rSlideRewindFunctor)
rSlideRewindFunctor();
mpAsynchronousRewindEvent = makeEvent(
- ::boost::bind(
+ ::std::bind(
&EffectRewinder::asynchronousRewind,
this,
nEffectCount,