ecore_imf: fix wrong return type of ecore_imf_context_input_panel_return_key_type_get

@fix
This commit is contained in:
Jihoon Kim 2015-06-30 16:39:56 +09:00
parent 7ea52e1bd8
commit 6840d17f9e
1 changed files with 1 additions and 1 deletions

View File

@ -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;