From a665e6320f5c7095195c070bbe295b4668179dad Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 24 Jun 2013 09:15:34 +0100 Subject: [PATCH] Remove call to wl_display_get_serial as it's a server-side function, not client-side. Signed-off-by: Chris Michael --- src/lib/ecore_wayland/ecore_wl_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore_wayland/ecore_wl_window.c b/src/lib/ecore_wayland/ecore_wl_window.c index ab4d70ded0..a9fa926b79 100644 --- a/src/lib/ecore_wayland/ecore_wl_window.c +++ b/src/lib/ecore_wayland/ecore_wl_window.c @@ -311,7 +311,7 @@ ecore_wl_window_show(Ecore_Wl_Window *win) case ECORE_WL_WINDOW_TYPE_MENU: wl_shell_surface_set_popup(win->shell_surface, _ecore_wl_disp->input->seat, - wl_display_get_serial(_ecore_wl_disp->wl.display), + _ecore_wl_disp->serial, win->parent->surface, win->allocation.x, win->allocation.y, 0); break;