diff options
author | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-01 15:51:38 -0200 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-01 15:51:38 -0200 |
commit | b77ac9b57ef6367adaa2812be874575559b54d72 (patch) | |
tree | bb384b70d834fa1bf2e7f0d6aa171510351274cd /src/modules/ecore_imf/wayland/wayland_imcontext.c | |
parent | 8b852ad21eb106545100b122fa82d9923526b8af (diff) |
ecore/wayland: Add ecore_wl_window_keyboard_get().
Instead of use direct access to the Ecore_Wl_Window structure, just use
the getter, so we can hide the internals.
Diffstat (limited to 'src/modules/ecore_imf/wayland/wayland_imcontext.c')
-rw-r--r-- | src/modules/ecore_imf/wayland/wayland_imcontext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/ecore_imf/wayland/wayland_imcontext.c b/src/modules/ecore_imf/wayland/wayland_imcontext.c index 84d0a50282..7a418f324f 100644 --- a/src/modules/ecore_imf/wayland/wayland_imcontext.c +++ b/src/modules/ecore_imf/wayland/wayland_imcontext.c | |||
@@ -625,7 +625,7 @@ wayland_im_context_focus_in(Ecore_IMF_Context *ctx) | |||
625 | 625 | ||
626 | if (!imcontext->window) return; | 626 | if (!imcontext->window) return; |
627 | 627 | ||
628 | input = imcontext->window->keyboard_device; | 628 | input = ecore_wl_window_keyboard_get(imcontext->window); |
629 | if (!input) | 629 | if (!input) |
630 | return; | 630 | return; |
631 | 631 | ||