diff options
author | Jihoon Kim <jihoon48.kim@samsung.com> | 2015-06-30 16:39:56 +0900 |
---|---|---|
committer | Jihoon Kim <jihoon48.kim@samsung.com> | 2015-06-30 16:39:56 +0900 |
commit | 6840d17f9e7c0b50c1bb99004a269e2de09acab7 (patch) | |
tree | 96145234cca5c2f5ac3bc125ee3247c266a8772a /src/lib/ecore_imf/ecore_imf_context.c | |
parent | 7ea52e1bd8b5be7a4e348f31c670436f0a6a4c53 (diff) |
ecore_imf: fix wrong return type of ecore_imf_context_input_panel_return_key_type_get
@fix
Diffstat (limited to 'src/lib/ecore_imf/ecore_imf_context.c')
-rw-r--r-- | src/lib/ecore_imf/ecore_imf_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_imf/ecore_imf_context.c b/src/lib/ecore_imf/ecore_imf_context.c index 6289117ec1..540178537e 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) | |||
1079 | { | 1079 | { |
1080 | ECORE_MAGIC_FAIL(ctx, ECORE_MAGIC_CONTEXT, | 1080 | ECORE_MAGIC_FAIL(ctx, ECORE_MAGIC_CONTEXT, |
1081 | "ecore_imf_context_input_panel_return_key_type_get"); | 1081 | "ecore_imf_context_input_panel_return_key_type_get"); |
1082 | return EINA_FALSE; | 1082 | return ECORE_IMF_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT; |
1083 | } | 1083 | } |
1084 | 1084 | ||
1085 | return ctx->input_panel_return_key_type; | 1085 | return ctx->input_panel_return_key_type; |