summaryrefslogtreecommitdiff
path: root/slideshow
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-12 09:45:52 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-12 09:46:23 +0100
commitbe3ee9c889f4240848a3f232f2b3009ea647fefc (patch)
tree32a46b1190957d19036052337329b2075c3a9aa0 /slideshow
parent16cd97480d0681d37f86e89366e1f9964ec16ef8 (diff)
callcatcher: update unused code list
Diffstat (limited to 'slideshow')
-rw-r--r--slideshow/source/engine/animationnodes/basenode.cxx8
-rw-r--r--slideshow/source/engine/animationnodes/basenode.hxx1
2 files changed, 0 insertions, 9 deletions
diff --git a/slideshow/source/engine/animationnodes/basenode.cxx b/slideshow/source/engine/animationnodes/basenode.cxx
index 8150f885f105..b4344137cfb2 100644
--- a/slideshow/source/engine/animationnodes/basenode.cxx
+++ b/slideshow/source/engine/animationnodes/basenode.cxx
@@ -748,14 +748,6 @@ const char* BaseNode::getDescription() const
return "BaseNode";
}
-void BaseNode::showTreeFromWithin() const
-{
- // find root node
- BaseNodeSharedPtr pCurrNode( mpSelf );
- while( pCurrNode->mpParent ) pCurrNode = pCurrNode->mpParent;
-
- pCurrNode->showState();
-}
#endif
} // namespace internal
diff --git a/slideshow/source/engine/animationnodes/basenode.hxx b/slideshow/source/engine/animationnodes/basenode.hxx
index eb0aef7cdf94..80d306d77ac4 100644
--- a/slideshow/source/engine/animationnodes/basenode.hxx
+++ b/slideshow/source/engine/animationnodes/basenode.hxx
@@ -112,7 +112,6 @@ public:
#if OSL_DEBUG_LEVEL >= 2 && defined(DBG_UTIL)
virtual void showState() const;
virtual const char* getDescription() const;
- void showTreeFromWithin() const;
#endif
const ::boost::shared_ptr< BaseContainerNode >& getParentNode() const