summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/effectrewinder.cxx
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/effectrewinder.cxx
parent1b6a84a5a24e7e02c6066ca0fcb5a0011d2decd6 (diff)
boost::shared_ptr->std::shared_ptr in slideshow
Change-Id: I27da6bc550488ea65ccdf1d26f8178f803f495d6
Diffstat (limited to 'slideshow/source/engine/effectrewinder.cxx')
-rw-r--r--slideshow/source/engine/effectrewinder.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/slideshow/source/engine/effectrewinder.cxx b/slideshow/source/engine/effectrewinder.cxx
index 9ac9898508b8..dca1a1ee524e 100644
--- a/slideshow/source/engine/effectrewinder.cxx
+++ b/slideshow/source/engine/effectrewinder.cxx
@@ -30,8 +30,6 @@
#include <com/sun/star/animations/EventTrigger.hpp>
#include <com/sun/star/container/XEnumerationAccess.hpp>
-#include <boost/enable_shared_from_this.hpp>
-
using ::com::sun::star::uno::Reference;
using namespace ::com::sun::star;
@@ -157,7 +155,7 @@ void EffectRewinder::setRootAnimationNode (
bool EffectRewinder::rewind (
- const ::boost::shared_ptr<ScreenUpdater::UpdateLock>& rpPaintLock,
+ const ::std::shared_ptr<ScreenUpdater::UpdateLock>& rpPaintLock,
const ::std::function<void ()>& rSlideRewindFunctor,
const ::std::function<void ()>& rPreviousSlideFunctor)
{
@@ -298,7 +296,7 @@ bool EffectRewinder::notifyAnimationStart (const AnimationNodeSharedPtr& rpNode)
{
// This notification is only relevant for us when the rpNode belongs to
// the main sequence.
- BaseNodeSharedPtr pBaseNode (::boost::dynamic_pointer_cast<BaseNode>(rpNode));
+ BaseNodeSharedPtr pBaseNode (::std::dynamic_pointer_cast<BaseNode>(rpNode));
if ( ! pBaseNode)
return false;