From: devilhorns Date: Wed, 23 May 2012 08:01:15 +0000 (+0000) Subject: Ecore_Wayland: Fix global interface name, thanks Alex ;) X-Git-Tag: 2.0_alpha~25^2~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31d6295d5c219656acfbeb4d16f3b3115925c7d6;p=framework%2Fuifw%2Fecore.git Ecore_Wayland: Fix global interface name, thanks Alex ;) git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/ecore@71350 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore_wayland/ecore_wl.c b/src/lib/ecore_wayland/ecore_wl.c index 33d69e2..5abbd24 100644 --- a/src/lib/ecore_wayland/ecore_wl.c +++ b/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);