From cb892827f83165587a2e88ab121ba72b5e8c398b Mon Sep 17 00:00:00 2001 From: andrunko Date: Wed, 21 Nov 2007 01:33:50 +0000 Subject: [PATCH] Changed ecore_imf_context_client_window_set to receive an Evas pointer. This would allow applications to create input method plugins with more fancy stuff (like transparency, ...). See http://staff.get-e.org/?p=users/andrunko/ilike-imf-ecore.git;a=summary. SVN revision: 32804 --- src/bin/e_entry.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/e_entry.c b/src/bin/e_entry.c index 040258a9c..1b197a0ff 100644 --- a/src/bin/e_entry.c +++ b/src/bin/e_entry.c @@ -975,8 +975,7 @@ _e_entry_smart_add(Evas_Object *object) sd->imf_context = ecore_imf_context_add(ecore_imf_context_default_id_get()); if (sd->imf_context) { - ecore_imf_context_client_window_set(sd->imf_context, - ecore_evas_window_get(ecore_evas_ecore_evas_get(evas))); + ecore_imf_context_client_window_set(sd->imf_context, evas); ecore_imf_context_retrieve_surrounding_callback_set(sd->imf_context, _e_entry_cb_imf_retrieve_surrounding, sd);