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/animationcommandnode.cxx | |
parent | 1b6a84a5a24e7e02c6066ca0fcb5a0011d2decd6 (diff) |
boost::shared_ptr->std::shared_ptr in slideshow
Change-Id: I27da6bc550488ea65ccdf1d26f8178f803f495d6
Diffstat (limited to 'slideshow/source/engine/animationnodes/animationcommandnode.cxx')
-rw-r--r-- | slideshow/source/engine/animationnodes/animationcommandnode.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/animationnodes/animationcommandnode.cxx b/slideshow/source/engine/animationnodes/animationcommandnode.cxx index 0ccc94fc7f68..9ad60892d15f 100644 --- a/slideshow/source/engine/animationnodes/animationcommandnode.cxx +++ b/slideshow/source/engine/animationnodes/animationcommandnode.cxx @@ -36,7 +36,7 @@ namespace internal { namespace EffectCommands = css::presentation::EffectCommands; AnimationCommandNode::AnimationCommandNode( uno::Reference<animations::XAnimationNode> const& xNode, - ::boost::shared_ptr<BaseContainerNode> const& pParent, + ::std::shared_ptr<BaseContainerNode> const& pParent, NodeContext const& rContext ) : BaseNode( xNode, pParent, rContext ), mpShape(), @@ -45,7 +45,7 @@ AnimationCommandNode::AnimationCommandNode( uno::Reference<animations::XAnimatio uno::Reference< drawing::XShape > xShape( mxCommandNode->getTarget(), uno::UNO_QUERY ); ShapeSharedPtr pShape( getContext().mpSubsettableShapeManager->lookupShape( xShape ) ); - mpShape = ::boost::dynamic_pointer_cast< IExternalMediaShapeBase >( pShape ); + mpShape = ::std::dynamic_pointer_cast< IExternalMediaShapeBase >( pShape ); } void AnimationCommandNode::dispose() |