summaryrefslogtreecommitdiff
path: root/sd/source/core/undoanim.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-03-01 16:30:37 +0000
committerKurt Zenker <kz@openoffice.org>2005-03-01 16:30:37 +0000
commit59718be054acabc2ba45c8476fe24703d5a80d14 (patch)
tree38b02128fb657419e65682a4e6def7fa7a73ad11 /sd/source/core/undoanim.cxx
parent7c126a4418b033a4282676be411d89450fd1d6e5 (diff)
INTEGRATION: CWS impress35 (1.3.30); FILE MERGED
2005/02/17 11:42:03 cl 1.3.30.1: #i42856# added async updates via vcl timers
Diffstat (limited to 'sd/source/core/undoanim.cxx')
-rw-r--r--sd/source/core/undoanim.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/core/undoanim.cxx b/sd/source/core/undoanim.cxx
index 5e81ca9d0463..c28364f4a69d 100644
--- a/sd/source/core/undoanim.cxx
+++ b/sd/source/core/undoanim.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: undoanim.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kz $ $Date: 2005-01-21 18:17:47 $
+ * last change: $Author: kz $ $Date: 2005-03-01 17:30:37 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -131,7 +131,7 @@ void UndoAnimation::Undo()
mpImpl->mpPage->mxAnimationNode = xClone;
if( mpImpl->mpPage->mpMainSequence.get() )
- mpImpl->mpPage->mpMainSequence->init( xClone );
+ mpImpl->mpPage->mpMainSequence->reset( xClone );
}
catch( Exception& e )
{
@@ -147,7 +147,7 @@ void UndoAnimation::Redo()
Reference< XCloneable > xCloneAble( mpImpl->mxNewNode, UNO_QUERY_THROW );
mpImpl->mpPage->mxAnimationNode.set( xCloneAble->createClone(), UNO_QUERY_THROW );
if( mpImpl->mpPage->mpMainSequence.get() )
- mpImpl->mpPage->mpMainSequence->init( mpImpl->mpPage->mxAnimationNode );
+ mpImpl->mpPage->mpMainSequence->reset( mpImpl->mpPage->mxAnimationNode );
}
catch( Exception& e )
{