diff options
author | Sebastian Geerken <devnull@localhost> | 2014-10-14 20:08:26 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-10-14 20:08:26 +0200 |
commit | 6c5f32b8ec8f9a01ca0ab6107779bfa2eda5299b (patch) | |
tree | ab26c5b2c487f61dd1aa2a1cf218b76c1c016460 /dw/table.cc | |
parent | d81d40e6849263a18281a5d64b95c2479ee9f120 (diff) |
Widget::stackingContextWidget; as well as some cleanup and debug messages.
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) |