From f29c0b2b3e8861909fa2c6c37bf631ab01590541 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 1 Feb 2016 18:53:50 +0200 Subject: boost::shared_ptr->std::shared_ptr in slideshow Change-Id: I27da6bc550488ea65ccdf1d26f8178f803f495d6 --- slideshow/source/engine/animationnodes/animationcommandnode.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'slideshow/source/engine/animationnodes/animationcommandnode.cxx') 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 const& xNode, - ::boost::shared_ptr const& pParent, + ::std::shared_ptr const& pParent, NodeContext const& rContext ) : BaseNode( xNode, pParent, rContext ), mpShape(), @@ -45,7 +45,7 @@ AnimationCommandNode::AnimationCommandNode( uno::Reference 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() -- cgit