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/layout.hh | |
parent | d81d40e6849263a18281a5d64b95c2479ee9f120 (diff) |
Widget::stackingContextWidget; as well as some cleanup and debug messages.
Diffstat (limited to 'dw/layout.hh')
-rw-r--r-- | dw/layout.hh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dw/layout.hh b/dw/layout.hh index 63c3ed04..efead388 100644 --- a/dw/layout.hh +++ b/dw/layout.hh @@ -314,7 +314,12 @@ public: /* View */ - inline void expose (View *view, Rectangle *area) { draw (view, area); } + inline void expose (View *view, Rectangle *area) { + DBG_OBJ_ENTER ("draw", 0, "expose", "%d, %d, %d * %d", + area->x, area->y, area->width, area->height); + draw (view, area); + DBG_OBJ_LEAVE (); + } /** * \brief This function is called by a view, to delegate a button press |