raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=24b10c0c7647765176a3c3a24eb21243f84e3023
commit 24b10c0c7647765176a3c3a24eb21243f84e3023 Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Sat Nov 2 11:51:50 2013 +0900 unbreak wayland elm build more - use get_surface_id api --- src/lib/elm_win.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index 95f4812..cbd0357 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -5469,7 +5469,7 @@ _window_id_get(Eo *obj EINA_UNUSED, void *_pd EINA_UNUSED, va_list *list) #if HAVE_ELEMENTARY_WAYLAND if (sd->wl.win) { - *ret = (Ecore_Window)sd->wl.win->surface_id; + *ret = (Ecore_Window)ecore_wl_window_surface_id_get(sd->wl.win); return; } if (sd->parent) @@ -5477,7 +5477,7 @@ _window_id_get(Eo *obj EINA_UNUSED, void *_pd EINA_UNUSED, va_list *list) Ecore_Wl_Window *parent; parent = elm_win_wl_window_get(sd->parent); - if (parent) *ret = (Ecore_Window)parent->surface_id; + if (parent) *ret = (Ecore_Window)ecore_wl_window_surface_id_get(parent); return; } #endif --