From 6f2f7c0e9463612c05b7a85cc049df5581d57581 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Thu, 29 Jan 2015 10:12:08 -0500 Subject: [PATCH] fix copy/paste errors Signed-off-by: Chris Michael --- src/bin/e_grabinput.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/e_grabinput.c b/src/bin/e_grabinput.c index 16cd27690..979fc3bde 100644 --- a/src/bin/e_grabinput.c +++ b/src/bin/e_grabinput.c @@ -220,7 +220,7 @@ _e_grabinput_focus_do(Ecore_Window win, E_Focus_Method method) ecore_x_window_focus_at_time(win, ecore_x_current_time_get()); ecore_x_icccm_take_focus_send(win, ecore_x_current_time_get()); #else - if ((wl_win = ecore_wl_window_find(key_win))) + if ((wl_win = ecore_wl_window_find(win))) { /* FIXME: Need to add an ecore_wl_window_focus function */ } @@ -231,7 +231,7 @@ _e_grabinput_focus_do(Ecore_Window win, E_Focus_Method method) #ifndef HAVE_WAYLAND_ONLY ecore_x_icccm_take_focus_send(win, ecore_x_current_time_get()); #else - if ((wl_win = ecore_wl_window_find(key_win))) + if ((wl_win = ecore_wl_window_find(win))) { /* FIXME: Need to add an ecore_wl_window_focus function */ } @@ -242,7 +242,7 @@ _e_grabinput_focus_do(Ecore_Window win, E_Focus_Method method) #ifndef HAVE_WAYLAND_ONLY ecore_x_window_focus_at_time(win, ecore_x_current_time_get()); #else - if ((wl_win = ecore_wl_window_find(key_win))) + if ((wl_win = ecore_wl_window_find(win))) { /* FIXME: Need to add an ecore_wl_window_focus function */ }