From 40e6d299ee78103caefb940cdeb6e595e24fe722 Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Fri, 3 Feb 2012 10:24:02 +0900 Subject: [PATCH] change layout default value to sync with opensource Change-Id: Ie3718d8935397d9f96be5cae75bc4cb8a3dd089f --- src/lib/ecore_imf/ecore_imf_context.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/lib/ecore_imf/ecore_imf_context.c b/src/lib/ecore_imf/ecore_imf_context.c index 663718e..ac815b1 100644 --- a/src/lib/ecore_imf/ecore_imf_context.c +++ b/src/lib/ecore_imf/ecore_imf_context.c @@ -786,9 +786,6 @@ ecore_imf_context_new(const Ecore_IMF_Context_Class *ctxc) ctx->data = NULL; ctx->retrieve_surrounding_func = NULL; ctx->retrieve_surrounding_data = NULL; - ctx->input_panel_layout = ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL; - ctx->callbacks = NULL; - return ctx; } @@ -1285,7 +1282,7 @@ ecore_imf_context_input_panel_layout_get (Ecore_IMF_Context *ctx) { ECORE_MAGIC_FAIL(ctx, ECORE_MAGIC_CONTEXT, "ecore_imf_context_input_panel_layout_get"); - return ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL; + return ECORE_IMF_INPUT_PANEL_LAYOUT_INVALID; } if (ctx->klass->input_panel_layout_get) @@ -1293,7 +1290,7 @@ ecore_imf_context_input_panel_layout_get (Ecore_IMF_Context *ctx) return ctx->input_panel_layout; } else - return ECORE_IMF_INPUT_PANEL_LAYOUT_NORMAL; + return ECORE_IMF_INPUT_PANEL_LAYOUT_INVALID; } /** -- 2.7.4