aboutsummaryrefslogtreecommitdiff
path: root/dw/widget.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2012-11-28 21:51:27 +0100
committerSebastian Geerken <devnull@localhost>2012-11-28 21:51:27 +0100
commit891e083d172ce40aec3d609ea5e0a4d3cd9df325 (patch)
tree7e7d14e739c68f235a2c6e32d493e4c1b511b1e6 /dw/widget.cc
parente31e795e8587a40d75d997b16fc7bac66916218b (diff)
Fixed wrong textblock (especially list item) size (overlapping borders in tables etc).
Diffstat (limited to 'dw/widget.cc')
-rw-r--r--dw/widget.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/dw/widget.cc b/dw/widget.cc
index 8ca0681a..3c788565 100644
--- a/dw/widget.cc
+++ b/dw/widget.cc
@@ -109,7 +109,8 @@ void Widget::setParent (Widget *parent)
buttonSensitive = parent->buttonSensitive;
//DBG_OBJ_ASSOC (widget, parent);
- //printf ("%p becomes a child of %p\n", this, parent);
+ //printf ("The %s %p becomes a child of the %s %p\n",
+ // getClassName(), this, parent->getClassName(), parent);
}
void Widget::queueDrawArea (int x, int y, int width, int height)