diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-04-01 09:14:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-04-02 08:15:59 +0100 |
commit | 3257da329760fb58a2a559d9a9891b8cc3176e09 (patch) | |
tree | e034cc28b722be22439d2dd8107ac94c0b2b7b6c /slideshow | |
parent | a3c644f90b47b21936173dd3b060e89dcb13adeb (diff) |
fix higher debug level build
Change-Id: I23324d03f3388642e964c13d8a5c32311f97ef08
Diffstat (limited to 'slideshow')
-rw-r--r-- | slideshow/source/engine/animationnodes/basecontainernode.cxx | 2 | ||||
-rw-r--r-- | slideshow/source/engine/animationnodes/basenode.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/slideshow/source/engine/animationnodes/basecontainernode.cxx b/slideshow/source/engine/animationnodes/basecontainernode.cxx index 5f565dbef9fe..cc1eb68b530e 100644 --- a/slideshow/source/engine/animationnodes/basecontainernode.cxx +++ b/slideshow/source/engine/animationnodes/basecontainernode.cxx @@ -186,7 +186,7 @@ void BaseContainerNode::showState() const BaseNodeSharedPtr pNode = boost::dynamic_pointer_cast<BaseNode>(maChildren[i]); VERBOSE_TRACE( - "Node connection: n0x%X -> n0x%X", + "Node connection: n%p -> n%p", (const char*)this+debugGetCurrentOffset(), (const char*)pNode.get()+debugGetCurrentOffset() ); pNode->showState(); diff --git a/slideshow/source/engine/animationnodes/basenode.cxx b/slideshow/source/engine/animationnodes/basenode.cxx index d9498ad5ac93..4940a8330ed7 100644 --- a/slideshow/source/engine/animationnodes/basenode.cxx +++ b/slideshow/source/engine/animationnodes/basenode.cxx @@ -683,12 +683,12 @@ void BaseNode::showState() const const AnimationNode::NodeState eNodeState( getState() ); if( eNodeState == AnimationNode::INVALID ) - VERBOSE_TRACE( "Node state: n0x%X [label=\"%s\",style=filled," + VERBOSE_TRACE( "Node state: n%p [label=\"%s\",style=filled," "fillcolor=\"0.5,0.2,0.5\"]", (const char*)this+debugGetCurrentOffset(), getDescription() ); else - VERBOSE_TRACE( "Node state: n0x%X [label=\"%s\",style=filled," + VERBOSE_TRACE( "Node state: n%p [label=\"%s\",style=filled," "fillcolor=\"%f,1.0,1.0\"]", (const char*)this+debugGetCurrentOffset(), getDescription(), @@ -726,7 +726,7 @@ void BaseNode::showState() const OUStringToOString( aName, RTL_TEXTENCODING_ASCII_US ) ); - VERBOSE_TRACE( "Node info: n0x%X, name \"%s\"", + VERBOSE_TRACE( "Node info: n%p, name \"%s\"", (const char*)this+debugGetCurrentOffset(), rAsciiName.getStr() ); } |