summaryrefslogtreecommitdiff
path: root/slideshow/source/engine
diff options
context:
space:
mode:
Diffstat (limited to 'slideshow/source/engine')
-rw-r--r--slideshow/source/engine/animationnodes/animationaudionode.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/slideshow/source/engine/animationnodes/animationaudionode.cxx b/slideshow/source/engine/animationnodes/animationaudionode.cxx
index 865c9f42ebf9..aa6fd404c591 100644
--- a/slideshow/source/engine/animationnodes/animationaudionode.cxx
+++ b/slideshow/source/engine/animationnodes/animationaudionode.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: animationaudionode.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-03-29 14:20:39 $
+ * last change: $Author: rt $ $Date: 2005-03-30 08:05:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -163,18 +163,17 @@ namespace presentation
// no duration and no inherent media time
// - assume duration '0'
getContext().mrEventQueue.addEvent(
- makeEvent( ::boost::bind(&BaseNode::deactivate,
- ::boost::cref( getSelf() ) ) ) );
+ makeEvent( boost::bind( &BaseNode::deactivate,
+ getSelf() ) ) );
}
else
{
// no node duration. Take inherent media
// time, then
getContext().mrEventQueue.addEvent(
- makeDelay( ::boost::bind(&BaseNode::deactivate,
- ::boost::cref( getSelf() ) ),
+ makeDelay( boost::bind( &BaseNode::deactivate,
+ getSelf() ),
mpPlayer->getDuration() ) );
-
}
}
}