diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-02-01 18:53:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-24 09:37:56 +0200 |
commit | f29c0b2b3e8861909fa2c6c37bf631ab01590541 (patch) | |
tree | 079aa9796ede8518a6b290f1184f25ac171173c0 /slideshow/source/engine/animationnodes/animationsetnode.cxx | |
parent | 1b6a84a5a24e7e02c6066ca0fcb5a0011d2decd6 (diff) |
boost::shared_ptr->std::shared_ptr in slideshow
Change-Id: I27da6bc550488ea65ccdf1d26f8178f803f495d6
Diffstat (limited to 'slideshow/source/engine/animationnodes/animationsetnode.cxx')
-rw-r--r-- | slideshow/source/engine/animationnodes/animationsetnode.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/animationnodes/animationsetnode.cxx b/slideshow/source/engine/animationnodes/animationsetnode.cxx index c2f37e3aa5b7..0e19b7fb8778 100644 --- a/slideshow/source/engine/animationnodes/animationsetnode.cxx +++ b/slideshow/source/engine/animationnodes/animationsetnode.cxx @@ -56,8 +56,8 @@ AnimationActivitySharedPtr AnimationSetNode::createActivity() const // AnimationBaseNode::fillCommonParameters() has set up // immediate deactivation as default when activity ends, but if (! isIndefiniteTiming( xAnimateNode->getDuration() )) { - boost::shared_ptr<AnimationSetNode> const pSelf( - boost::dynamic_pointer_cast<AnimationSetNode>(getSelf()) ); + std::shared_ptr<AnimationSetNode> const pSelf( + std::dynamic_pointer_cast<AnimationSetNode>(getSelf()) ); ENSURE_OR_THROW( pSelf, "cannot cast getSelf() to my type!" ); aParms.mpEndEvent = makeEvent( |