diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-30 03:27:09 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-30 03:27:09 +0000 |
| commit | 1c61a333db13c70c679b0b4bbb4f1b7cdb26cb8f (patch) | |
| tree | 7c99c4f7e222585bc6ab2bf512fe379ef761466a | |
| parent | 705d70b053b6c99949dabf01405bbb598588b3a8 (diff) | |
add debug print
| -rw-r--r-- | otk/eventdispatcher.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/otk/eventdispatcher.cc b/otk/eventdispatcher.cc index a1858eee..c8b27b9c 100644 --- a/otk/eventdispatcher.cc +++ b/otk/eventdispatcher.cc @@ -165,7 +165,11 @@ void EventDispatcher::dispatch(Window win, const XEvent &e) xwc.border_width = e.xconfigurerequest.border_width; xwc.sibling = e.xconfigurerequest.above; xwc.stack_mode = e.xconfigurerequest.detail; - + +#ifdef DEBUG + printf("Proxying configure event for 0x%lx\n", e.xconfigurerequest.window); +#endif + // we are not to be held responsible if someone sends us an invalid // request! display->setIgnoreErrors(true); |
