jihoon pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=6840d17f9e7c0b50c1bb99004a269e2de09acab7
commit 6840d17f9e7c0b50c1bb99004a269e2de09acab7 Author: Jihoon Kim <jihoon48....@samsung.com> Date: Tue Jun 30 16:39:56 2015 +0900 ecore_imf: fix wrong return type of ecore_imf_context_input_panel_return_key_type_get @fix --- src/lib/ecore_imf/ecore_imf_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore_imf/ecore_imf_context.c b/src/lib/ecore_imf/ecore_imf_context.c index 6289117..5401785 100644 --- a/src/lib/ecore_imf/ecore_imf_context.c +++ b/src/lib/ecore_imf/ecore_imf_context.c @@ -1079,7 +1079,7 @@ ecore_imf_context_input_panel_return_key_type_get(Ecore_IMF_Context *ctx) { ECORE_MAGIC_FAIL(ctx, ECORE_MAGIC_CONTEXT, "ecore_imf_context_input_panel_return_key_type_get"); - return EINA_FALSE; + return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT; } return ctx->input_panel_return_key_type; --