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/sequentialtimecontainer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'slideshow/source/engine/animationnodes/sequentialtimecontainer.cxx') diff --git a/slideshow/source/engine/animationnodes/sequentialtimecontainer.cxx b/slideshow/source/engine/animationnodes/sequentialtimecontainer.cxx index 56dcf0c89814..68bda1a56999 100644 --- a/slideshow/source/engine/animationnodes/sequentialtimecontainer.cxx +++ b/slideshow/source/engine/animationnodes/sequentialtimecontainer.cxx @@ -95,7 +95,7 @@ bool SequentialTimeContainer::resolveChild( // event that will deactivate the resolved/running child: mpCurrentSkipEvent = makeEvent( std::bind( &SequentialTimeContainer::skipEffect, - boost::dynamic_pointer_cast( getSelf() ), + std::dynamic_pointer_cast( getSelf() ), pChildNode ), "SequentialTimeContainer::skipEffect, resolveChild"); -- cgit