From c8ac5486d8ea1fa11c8c514398b20fbc2186a147 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Sun, 14 Sep 2014 15:22:03 +0900 Subject: [PATCH] edje: fix build warning in _edje_entry_input_hint_set/get Thanks for reporting, jeyzu --- src/lib/edje/edje_entry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/edje/edje_entry.c b/src/lib/edje/edje_entry.c index 438e6d560b..22cd9a3a8b 100644 --- a/src/lib/edje/edje_entry.c +++ b/src/lib/edje/edje_entry.c @@ -3202,7 +3202,7 @@ _edje_entry_input_hint_set(Edje_Real_Part *rp, Edje_Input_Hints input_hints) if (!en) return; #ifdef HAVE_ECORE_IMF if (en->imf_context) - ecore_imf_context_input_hint_set(en->imf_context, input_hints); + ecore_imf_context_input_hint_set(en->imf_context, (Ecore_IMF_Input_Hints)input_hints); #else (void) input_hints; #endif @@ -3219,7 +3219,7 @@ _edje_entry_input_hint_get(const Edje_Real_Part *rp) if (!en) return EDJE_INPUT_HINT_NONE; #ifdef HAVE_ECORE_IMF if (en->imf_context) - return ecore_imf_context_input_hint_get(en->imf_context); + return (Edje_Input_Hints)ecore_imf_context_input_hint_get(en->imf_context); #endif return EDJE_INPUT_HINT_NONE; -- 2.34.1