diff options
author | Pavel Janík <paveljanik@apache.org> | 2012-08-29 19:28:25 +0000 |
---|---|---|
committer | Pavel Janík <paveljanik@apache.org> | 2012-08-29 19:28:25 +0000 |
commit | c2d1fb4c0f30026ddfb715f624a79fe4128e1f00 (patch) | |
tree | 4b15a2e9cecf270c43e06a496b6e4e7b93b82603 /slideshow | |
parent | a9c0b6273e8445557c01a111d807becf887fb67a (diff) |
Fix broken C++ code.
Notes
Notes:
prefer: 372c47309a192e67220913309fa1ccffdff8cde1
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/animationnodes/animationbasenode.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/animationnodes/animationbasenode.cxx b/slideshow/source/engine/animationnodes/animationbasenode.cxx index 6d0ac74245d2..2a0c1a80884c 100644 --- a/slideshow/source/engine/animationnodes/animationbasenode.cxx +++ b/slideshow/source/engine/animationnodes/animationbasenode.cxx @@ -462,7 +462,7 @@ AnimationBaseNode::fillCommonParameters() const // calc accel/decel: double nAcceleration = 0.0; double nDeceleration = 0.0; - en for ( boost::shared_ptr<BaseNode> pNode( pSelf ); + for ( boost::shared_ptr<BaseNode> pNode( pSelf ); pNode; pNode = pNode->getParentNode() ) { uno::Reference<animations::XAnimationNode> const xAnimationNode( |