diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-11 10:08:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-11 12:06:24 +0100 |
commit | bb7d331ecdb3a0a4723f770a9f891c00f4a25dbf (patch) | |
tree | 0aba373af9d4e699a6ceee6c2d209da69b0297ed /slideshow | |
parent | 1ed856c2653a029846f31f190ca837824c704cac (diff) |
callcatcher: update list
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/qa/debug/nodetree.sh | 2 | ||||
-rw-r--r-- | slideshow/source/engine/animationnodes/nodetools.cxx | 8 | ||||
-rw-r--r-- | slideshow/source/engine/animationnodes/nodetools.hxx | 3 |
3 files changed, 1 insertions, 12 deletions
diff --git a/slideshow/qa/debug/nodetree.sh b/slideshow/qa/debug/nodetree.sh index da323ec316c0..906318118c24 100644 --- a/slideshow/qa/debug/nodetree.sh +++ b/slideshow/qa/debug/nodetree.sh @@ -25,7 +25,7 @@ # grep for the DEBUG_NODES_SHOWTREE macros in the slideshow source: # Each such place dumps the current node tree to the trace output. Thus, # if you need to check the tree state at other places or times, just add -# a DEBUG_NODES_SHOWTREE (or DEBUG_NODES_SHOWTREE_WITHIN, that is). +# a DEBUG_NODES_SHOWTREE # ################################################### diff --git a/slideshow/source/engine/animationnodes/nodetools.cxx b/slideshow/source/engine/animationnodes/nodetools.cxx index b4b0bbc364fa..4fac68ccd3e4 100644 --- a/slideshow/source/engine/animationnodes/nodetools.cxx +++ b/slideshow/source/engine/animationnodes/nodetools.cxx @@ -58,14 +58,6 @@ namespace slideshow ++debugGetCurrentOffset(); } - - void debugNodesShowTreeWithin( const BaseNode* pNode ) - { - if( pNode ) - pNode->showTreeFromWithin(); - - ++debugGetCurrentOffset(); - } #endif AttributableShapeSharedPtr lookupAttributableShape( const ShapeManagerSharedPtr& rShapeManager, diff --git a/slideshow/source/engine/animationnodes/nodetools.hxx b/slideshow/source/engine/animationnodes/nodetools.hxx index 44109a175235..4882a2a35660 100644 --- a/slideshow/source/engine/animationnodes/nodetools.hxx +++ b/slideshow/source/engine/animationnodes/nodetools.hxx @@ -41,10 +41,8 @@ #if OSL_DEBUG_LEVEL >= 2 && defined(DBG_UTIL) # define DEBUG_NODES_SHOWTREE(a) debugNodesShowTree(a); -# define DEBUG_NODES_SHOWTREE_WITHIN(a) debugNodesShowTreeWithin(a); #else # define DEBUG_NODES_SHOWTREE(a) -# define DEBUG_NODES_SHOWTREE_WITHIN(a) #endif namespace slideshow @@ -58,7 +56,6 @@ namespace slideshow #if OSL_DEBUG_LEVEL >= 2 && defined(DBG_UTIL) int& debugGetCurrentOffset(); void debugNodesShowTree( const BaseNode* ); - void debugNodesShowTreeWithin( const BaseNode* ); #endif /** Look up an AttributableShape from ShapeManager. |