diff options
author | Sebastian Geerken <devnull@localhost> | 2013-08-15 13:07:11 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-08-15 13:07:11 +0200 |
commit | b8d6e3ec9f5d0b2676eaea34fae2b8253ec44104 (patch) | |
tree | f59a917ffaa4b721c56f5de8c2b84b4926a48bd2 /dw/iterator.cc | |
parent | bd17107d17663c847e671ff736af969b5c441e71 (diff) |
Debugging.
Diffstat (limited to 'dw/iterator.cc')
-rw-r--r-- | dw/iterator.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dw/iterator.cc b/dw/iterator.cc index cdbc58bd..602dfec4 100644 --- a/dw/iterator.cc +++ b/dw/iterator.cc @@ -57,10 +57,7 @@ bool Iterator::equals (Object *other) void Iterator::intoStringBuffer(misc::StringBuffer *sb) { - sb->append ("{ content = "); - Content::intoStringBuffer (&content, sb); - - sb->append (", widget = "); + sb->append ("{ widget = "); //widget->intoStringBuffer (sb); sb->appendPointer (widget); sb->append (" ("); @@ -70,6 +67,9 @@ void Iterator::intoStringBuffer(misc::StringBuffer *sb) sb->append (", mask = "); Content::maskIntoStringBuffer (mask, sb); + sb->append (", content = "); + Content::intoStringBuffer (&content, sb); + sb->append (" }"); } |