summaryrefslogtreecommitdiff
path: root/slideshow/source
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-03-30 07:05:02 +0000
committerRüdiger Timm <rt@openoffice.org>2005-03-30 07:05:02 +0000
commit8e5a0501da49e486920be9fa7e51fa76f3f75afb (patch)
tree580d3a7479886b87b61e67b749b723ac2a82b135 /slideshow/source
parent506bd34526589431d85bad0a0c65e1b87ab8ee70 (diff)
INTEGRATION: CWS presfixes02 (1.3.2); FILE MERGED
2005/03/15 10:38:26 dbo 1.3.2.1: #i39513# misc minor improvements Issue number: Submitted by: Reviewed by:
Diffstat (limited to 'slideshow/source')
-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() ) );
-
}
}
}