summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/effectrewinder.cxx
diff options
context:
space:
mode:
authorAndre Fischer <af@openoffice.org>2009-04-27 11:42:05 +0000
committerAndre Fischer <af@openoffice.org>2009-04-27 11:42:05 +0000
commit69a4a545a556bd189736b3e510d4b4b07ae8cb6e (patch)
tree33696e0153c26ca3c8cf32b988cc6422688cccee /slideshow/source/engine/effectrewinder.cxx
parentaa02f1da390cb9b1225de978f8e2965c34e3a45f (diff)
#i48179# Debug: added descriptive strings to events.
Diffstat (limited to 'slideshow/source/engine/effectrewinder.cxx')
-rw-r--r--slideshow/source/engine/effectrewinder.cxx12
1 files changed, 8 insertions, 4 deletions
diff --git a/slideshow/source/engine/effectrewinder.cxx b/slideshow/source/engine/effectrewinder.cxx
index 59db7ba50615..3f6ceb54bb8e 100644
--- a/slideshow/source/engine/effectrewinder.cxx
+++ b/slideshow/source/engine/effectrewinder.cxx
@@ -213,7 +213,8 @@ bool EffectRewinder::rewind (
::boost::bind(
&EffectRewinder::asynchronousRewindToPreviousSlide,
this,
- rPreviousSlideFunctor));
+ rPreviousSlideFunctor),
+ "EffectRewinder::asynchronousRewindToPreviousSlide");
}
else
{
@@ -225,7 +226,8 @@ bool EffectRewinder::rewind (
this,
nSkipCount,
true,
- rSlideRewindFunctor));
+ rSlideRewindFunctor),
+ "EffectRewinder::asynchronousRewind");
}
if (mpAsynchronousRewindEvent)
@@ -253,7 +255,8 @@ void EffectRewinder::skipAllMainSequenceEffects (void)
this,
nTotalMainSequenceEffectCount,
false,
- ::boost::function<void(void)>()));
+ ::boost::function<void(void)>()),
+ "EffectRewinder::asynchronousRewind");
mrEventQueue.addEvent(mpAsynchronousRewindEvent);
}
@@ -391,7 +394,8 @@ void EffectRewinder::asynchronousRewind (
this,
nEffectCount,
false,
- rSlideRewindFunctor));
+ rSlideRewindFunctor),
+ "EffectRewinder::asynchronousRewind");
mrEventQueue.addEvent(mpAsynchronousRewindEvent);
}
else