From: sachiel Date: Tue, 19 Oct 2010 13:56:17 +0000 (+0000) Subject: Revert the changes on ecore_x, seems not needed and break composite X-Git-Tag: build/2012-07-04.173327~1576 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7cfd6822fc6e9fc369e0ad7dfd4890b8d5c6f71;p=profile%2Fivi%2Fecore.git Revert the changes on ecore_x, seems not needed and break composite git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@53617 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_evas/ecore_evas_x.c b/src/lib/ecore_evas/ecore_evas_x.c index 6520e46..1cb168c 100644 --- a/src/lib/ecore_evas/ecore_evas_x.c +++ b/src/lib/ecore_evas/ecore_evas_x.c @@ -744,7 +744,7 @@ _ecore_evas_x_event_mouse_in(void *data __UNUSED__, int type __UNUSED__, void *e Ecore_X_Event_Mouse_In *e; e = event; - ee = ecore_event_window_match(e->event_win); + ee = ecore_event_window_match(e->win); if ((!ee) || (ee->ignore_events)) return ECORE_CALLBACK_PASS_ON; /* pass on event */ if (e->win != ee->prop.window) return ECORE_CALLBACK_PASS_ON; /* { */ @@ -795,7 +795,7 @@ _ecore_evas_x_event_mouse_out(void *data __UNUSED__, int type __UNUSED__, void * Ecore_X_Event_Mouse_Out *e; e = event; - ee = ecore_event_window_match(e->event_win); + ee = ecore_event_window_match(e->win); if ((!ee) || (ee->ignore_events)) return ECORE_CALLBACK_PASS_ON; /* pass on event */ if (e->win != ee->prop.window) return ECORE_CALLBACK_PASS_ON; @@ -954,7 +954,7 @@ _ecore_evas_x_event_window_destroy(void *data __UNUSED__, int type __UNUSED__, v Ecore_X_Event_Window_Destroy *e; e = event; - ee = ecore_event_window_match(e->event_win); + ee = ecore_event_window_match(e->win); if (!ee) return ECORE_CALLBACK_PASS_ON; /* pass on event */ if (e->win != ee->prop.window) return ECORE_CALLBACK_PASS_ON; if (ee->func.fn_destroy) ee->func.fn_destroy(ee); @@ -970,7 +970,7 @@ _ecore_evas_x_event_window_configure(void *data __UNUSED__, int type __UNUSED__, Ecore_X_Event_Window_Configure *e; e = event; - ee = ecore_event_window_match(e->event_win); + ee = ecore_event_window_match(e->win); if (!ee) return ECORE_CALLBACK_PASS_ON; /* pass on event */ if (e->win != ee->prop.window) return ECORE_CALLBACK_PASS_ON; if (ee->engine.x.direct_resize) return ECORE_CALLBACK_PASS_ON; @@ -1049,7 +1049,7 @@ _ecore_evas_x_event_window_show(void *data __UNUSED__, int type __UNUSED__, void static int first_map_bug = -1; e = event; - ee = ecore_event_window_match(e->event_win); + ee = ecore_event_window_match(e->win); if (!ee) return ECORE_CALLBACK_PASS_ON; /* pass on event */ if (e->win != ee->prop.window) return ECORE_CALLBACK_PASS_ON; if (first_map_bug < 0) @@ -1076,7 +1076,7 @@ _ecore_evas_x_event_window_hide(void *data __UNUSED__, int type __UNUSED__, void Ecore_X_Event_Window_Hide *e; e = event; - ee = ecore_event_window_match(e->event_win); + ee = ecore_event_window_match(e->win); if (!ee) return ECORE_CALLBACK_PASS_ON; /* pass on event */ if (e->win != ee->prop.window) return ECORE_CALLBACK_PASS_ON; if (!ee->visible) return ECORE_CALLBACK_DONE;