diff options
Diffstat (limited to 'dw/table.cc')
-rw-r--r-- | dw/table.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dw/table.cc b/dw/table.cc index ce45b7ad..5e4083ff 100644 --- a/dw/table.cc +++ b/dw/table.cc @@ -358,6 +358,9 @@ bool Table::isBlockLevel () void Table::draw (core::View *view, core::Rectangle *area) { + DBG_OBJ_ENTER ("draw", 0, "draw", "%d, %d, %d * %d", + area->x, area->y, area->width, area->height); + // Can be optimized, by iterating on the lines in area. drawWidgetBox (view, area, false); @@ -389,6 +392,8 @@ void Table::draw (core::View *view, core::Rectangle *area) } drawOOF (view, area); + + DBG_OBJ_LEAVE (); } void Table::removeChild (Widget *child) |