From 3a607fad9df628ab16e0f7436dfbfc9b22634003 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 15 Sep 2003 11:29:17 +0000 Subject: revert my commit of d3th, it fucked up focus badly --- openbox/mainloop.c | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'openbox/mainloop.c') diff --git a/openbox/mainloop.c b/openbox/mainloop.c index a50a48fb..9ee20757 100644 --- a/openbox/mainloop.c +++ b/openbox/mainloop.c @@ -1,5 +1,4 @@ #include "mainloop.h" -#include "focus.h" #include #include @@ -100,7 +99,6 @@ struct _ObMainLoopXHandlerType ObMainLoop *loop; gpointer data; ObMainLoopXHandler func; - ObMainLoopXDoneHandler done_func; GDestroyNotify destroy; }; @@ -265,12 +263,6 @@ void ob_main_loop_run(ObMainLoop *loop) h->func(&e, h->data); } } while (XPending(loop->display)); - - for (it = loop->x_handlers; it; it = g_slist_next(it)) { - ObMainLoopXHandlerType *h = it->data; - if (h->done_func) - h->done_func(h->data); - } } else { /* this only runs if there were no x events received */ @@ -305,7 +297,6 @@ void ob_main_loop_exit(ObMainLoop *loop) void ob_main_loop_x_add(ObMainLoop *loop, ObMainLoopXHandler handler, - ObMainLoopXDoneHandler done_handler, gpointer data, GDestroyNotify notify) { @@ -314,7 +305,6 @@ void ob_main_loop_x_add(ObMainLoop *loop, h = g_new(ObMainLoopXHandlerType, 1); h->loop = loop; h->func = handler; - h->done_func = done_handler; h->data = data; h->destroy = notify; loop->x_handlers = g_slist_prepend(loop->x_handlers, h); -- cgit v1.2.3