From bbdfd8f1d6b46954f5611f245ee2c68aa2fe91ce Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 4 Dec 2002 00:04:27 +0000 Subject: [PATCH] scratch that --- otk/eventdispatcher.cc | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/otk/eventdispatcher.cc b/otk/eventdispatcher.cc index 75a06ea1..69fa3d5a 100644 --- a/otk/eventdispatcher.cc +++ b/otk/eventdispatcher.cc @@ -52,23 +52,6 @@ void OtkEventDispatcher::dispatchEvents(void) if (handler) handler->handle(e); - else { - // some events have to be handled anyways! - if (e.type == ConfigureRequest) { - XWindowChanges xwc; - - xwc.x = e.xconfigurerequest.x; - xwc.y = e.xconfigurerequest.y; - xwc.width = e.xconfigurerequest.width; - xwc.height = e.xconfigurerequest.height; - xwc.border_width = e.xconfigurerequest.border_width; - xwc.sibling = e.xconfigurerequest.above; - xwc.stack_mode = e.xconfigurerequest.detail; - - XConfigureWindow(OBDisplay::display, e.xconfigurerequest.window, - e.xconfigurerequest.value_mask, &xwc); - } - } } } -- 2.39.2