From: Rafael Antognolli Date: Mon, 4 Nov 2013 19:44:15 +0000 (-0200) Subject: Update usage of ecore_wayland globals. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0581ddb5d3e3cf93a55667ce0be449d33e3ce6a7;p=profile%2Fivi%2Fweekeyboard.git Update usage of ecore_wayland globals. The list returned by ecore_wl_globals_get() is an Eina_Inlist now, instead of struct wl_list. Signed-off-by: Rafael Antognolli --- diff --git a/src/wkb-main.c b/src/wkb-main.c index c142bd1..e27aec2 100644 --- a/src/wkb-main.c +++ b/src/wkb-main.c @@ -462,7 +462,7 @@ end: static void _wkb_setup(struct weekeyboard *wkb) { - struct wl_list *globals; + Eina_Inlist *globals; struct wl_registry *registry; Ecore_Wl_Global *global; @@ -470,7 +470,7 @@ _wkb_setup(struct weekeyboard *wkb) globals = ecore_wl_globals_get(); registry = ecore_wl_registry_get(); - wl_list_for_each(global, globals, link) + EINA_INLIST_FOREACH(globals, global) { if (strcmp(global->interface, "wl_input_panel") == 0) wkb->ip = wl_registry_bind(registry, global->id, &wl_input_panel_interface, 1);