Update usage of ecore_wayland globals.
authorRafael Antognolli <rafael.antognolli@intel.com>
Mon, 4 Nov 2013 19:44:15 +0000 (17:44 -0200)
committerPhilippe Coval <philippe.coval@open.eurogiciel.org>
Fri, 7 Feb 2014 09:38:39 +0000 (10:38 +0100)
The list returned by ecore_wl_globals_get() is an Eina_Inlist now,
instead of struct wl_list.

Signed-off-by: Rafael Antognolli <rafael.antognolli@intel.com>
src/wkb-main.c

index c142bd1..e27aec2 100644 (file)
@@ -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);