From 7d9ec3120f5f9789f53a4d5e71a4c72e4b5eed3b Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 23 May 2012 08:01:15 +0000 Subject: [PATCH] Ecore_Wayland: Fix global interface name, thanks Alex ;) SVN revision: 71350 --- legacy/ecore/src/lib/ecore_wayland/ecore_wl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/ecore/src/lib/ecore_wayland/ecore_wl.c b/legacy/ecore/src/lib/ecore_wayland/ecore_wl.c index 33d69e2486..5abbd24730 100644 --- a/legacy/ecore/src/lib/ecore_wayland/ecore_wl.c +++ b/legacy/ecore/src/lib/ecore_wayland/ecore_wl.c @@ -407,7 +407,7 @@ _ecore_wl_cb_handle_global(struct wl_display *disp, unsigned int id, const char ewd->wl.compositor = wl_display_bind(disp, id, &wl_compositor_interface); else if (!strcmp(interface, "wl_output")) _ecore_wl_output_add(ewd, id); - else if (!strcmp(interface, "wl_input_device")) + else if (!strcmp(interface, "wl_seat")) _ecore_wl_input_add(ewd, id); else if (!strcmp(interface, "wl_shell")) ewd->wl.shell = wl_display_bind(disp, id, &wl_shell_interface);