From 0581ddb5d3e3cf93a55667ce0be449d33e3ce6a7 Mon Sep 17 00:00:00 2001 From: Rafael Antognolli Date: Mon, 4 Nov 2013 17:44:15 -0200 Subject: [PATCH] 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 --- src/wkb-main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.7.4