jihoon pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=c8ac5486d8ea1fa11c8c514398b20fbc2186a147

commit c8ac5486d8ea1fa11c8c514398b20fbc2186a147
Author: Jihoon Kim <jihoon48....@samsung.com>
Date:   Sun Sep 14 15:22:03 2014 +0900

    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 438e6d5..22cd9a3 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;

-- 


Reply via email to