summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/animationnodes/basecontainernode.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2016-02-01 18:53:50 +0200
committerNoel Grandin <noel@peralex.com>2016-02-24 09:37:56 +0200
commitf29c0b2b3e8861909fa2c6c37bf631ab01590541 (patch)
tree079aa9796ede8518a6b290f1184f25ac171173c0 /slideshow/source/engine/animationnodes/basecontainernode.hxx
parent1b6a84a5a24e7e02c6066ca0fcb5a0011d2decd6 (diff)
boost::shared_ptr->std::shared_ptr in slideshow
Change-Id: I27da6bc550488ea65ccdf1d26f8178f803f495d6
Diffstat (limited to 'slideshow/source/engine/animationnodes/basecontainernode.hxx')
-rw-r--r--slideshow/source/engine/animationnodes/basecontainernode.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/engine/animationnodes/basecontainernode.hxx b/slideshow/source/engine/animationnodes/basecontainernode.hxx
index 7fb308c44ab8..06e67a1a39eb 100644
--- a/slideshow/source/engine/animationnodes/basecontainernode.hxx
+++ b/slideshow/source/engine/animationnodes/basecontainernode.hxx
@@ -32,7 +32,7 @@ class BaseContainerNode : public BaseNode
public:
BaseContainerNode(
css::uno::Reference<css::animations::XAnimationNode> const& xNode,
- ::boost::shared_ptr<BaseContainerNode> const& pParent,
+ ::std::shared_ptr<BaseContainerNode> const& pParent,
NodeContext const& rContext );
/** Add given child node to this container
@@ -91,7 +91,7 @@ private:
const bool mbDurationIndefinite;
};
-typedef ::boost::shared_ptr< BaseContainerNode > BaseContainerNodeSharedPtr;
+typedef ::std::shared_ptr< BaseContainerNode > BaseContainerNodeSharedPtr;
} // namespace interface
} // namespace presentation