diff options
author | Sebastian Geerken <devnull@localhost> | 2015-06-10 22:57:53 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-06-10 22:57:53 +0200 |
commit | 9500f94781023d15783f4c8158c17c112135a221 (patch) | |
tree | 4643fdf41a681b3b8e6e336d2f13258478b82cde /dw/tools.cc | |
parent | 22ad8daa0b3e6b20e911e12e0f0e657b52303698 (diff) |
SRDOP: Work on RTFL messages.
Diffstat (limited to 'dw/tools.cc')
-rw-r--r-- | dw/tools.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dw/tools.cc b/dw/tools.cc index 8f36069a..9a998976 100644 --- a/dw/tools.cc +++ b/dw/tools.cc @@ -5,12 +5,15 @@ namespace core { SizeParams::SizeParams () { + DBG_OBJ_CREATE ("dw::core::SizeParams"); init (); + debugPrint (); } SizeParams::~SizeParams () { cleanup (); + DBG_OBJ_DELETE (); } void SizeParams::init () @@ -47,6 +50,8 @@ void SizeParams::fill (int numPos, Widget **references, int *x, int *y) this->x[i] = x[i]; this->y[i] = y[i]; } + + debugPrint (); } void SizeParams::forChild (Widget *parent, Widget *child, int xRel, int yRel, @@ -80,6 +85,7 @@ void SizeParams::forChild (Widget *parent, Widget *child, int xRel, int yRel, } } + childParams->debugPrint (); } bool SizeParams::findReference (Widget *reference, int *x, int *y) |