diff options
-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 (" }"); } |