summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-06-26 08:52:14 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-06-26 08:52:42 +0100
commit7a123cae332c99b047b3d6392b5df803d1aa2c79 (patch)
tree3099ed474f68b7254d3707b48a510a5867c50aba /slideshow
parent96329b45a8b19beb84a67c13c8fbc0f96ac72d68 (diff)
boost::shared_dynamic_cast -> boost::dynamic_pointer_cast
Change-Id: I2db39313de7df003b59a00a6d6a210f29c3a24ea
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/animationnodes/basecontainernode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/slideshow/source/engine/animationnodes/basecontainernode.cxx b/slideshow/source/engine/animationnodes/basecontainernode.cxx
index 6410950aaec8..b2896aadaea7 100644
--- a/slideshow/source/engine/animationnodes/basecontainernode.cxx
+++ b/slideshow/source/engine/animationnodes/basecontainernode.cxx
@@ -183,7 +183,7 @@ void BaseContainerNode::showState() const
for( std::size_t i=0; i<maChildren.size(); ++i )
{
BaseNodeSharedPtr pNode =
- boost::shared_dynamic_cast<BaseNode>(maChildren[i]);
+ boost::dynamic_pointer_cast<BaseNode>(maChildren[i]);
VERBOSE_TRACE(
"Node connection: n0x%X -> n0x%X",
(const char*)this+debugGetCurrentOffset(),