diff options
Diffstat (limited to 'dw/textblock.cc')
-rw-r--r-- | dw/textblock.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dw/textblock.cc b/dw/textblock.cc index 9d073c9b..9342e792 100644 --- a/dw/textblock.cc +++ b/dw/textblock.cc @@ -650,6 +650,8 @@ void Textblock::sizeAllocateImpl (core::Allocation *allocation) void Textblock::containerSizeChangedForChildren () { + DBG_OBJ_ENTER0 ("resize", 0, "containerSizeChangedForChildren"); + for (int i = 0; i < words->size (); i++) { Word *word = words->getRef (i); if (word->content.type == core::Content::WIDGET_IN_FLOW) @@ -658,6 +660,8 @@ void Textblock::containerSizeChangedForChildren () if (outOfFlowMgr) outOfFlowMgr->containerSizeChangedForChildren (); + + DBG_OBJ_LEAVE (); } bool Textblock::usesAvailWidth () |