diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-04-17 17:23:19 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-04-17 17:23:19 +0900 |
commit | 0a600a45d3def6ab1336d2a4a4503e6059ca5e85 (patch) | |
tree | b2e666eabf4a61350420ac7c2e7bf1234c561f42 /src/lib/ecore_imf/ecore_imf_context.c | |
parent | 2055a876c48df42f598cdc2e097a4e9b0d9d9d7c (diff) |
Revert "ecore_imf: Add ecore_imf_context_keyboard_mode_get API"
This reverts commit 4533eef59b3b84c28ed6cd5814d753291df3f6f1.
this commit breaks efl's build and can't be fixed - missing types.
Diffstat (limited to 'src/lib/ecore_imf/ecore_imf_context.c')
-rw-r--r-- | src/lib/ecore_imf/ecore_imf_context.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/ecore_imf/ecore_imf_context.c b/src/lib/ecore_imf/ecore_imf_context.c index a7289ba700..d6fd854035 100644 --- a/src/lib/ecore_imf/ecore_imf_context.c +++ b/src/lib/ecore_imf/ecore_imf_context.c | |||
@@ -1391,19 +1391,3 @@ ecore_imf_context_bidi_direction_get(Ecore_IMF_Context *ctx) | |||
1391 | return ctx->bidi_direction; | 1391 | return ctx->bidi_direction; |
1392 | } | 1392 | } |
1393 | 1393 | ||
1394 | EAPI Ecore_IMF_Input_Panel_Keyboard_Mode | ||
1395 | ecore_imf_context_keyboard_mode_get(Ecore_IMF_Context *ctx) | ||
1396 | { | ||
1397 | Ecore_IMF_Input_Panel_Keyboard_Mode mode = ECORE_IMF_INPUT_PANEL_SW_KEYBOARD_MODE; | ||
1398 | if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) | ||
1399 | { | ||
1400 | ECORE_MAGIC_FAIL(ctx, ECORE_MAGIC_CONTEXT, | ||
1401 | "ecore_imf_context_keyboard_mode_get"); | ||
1402 | return ECORE_IMF_INPUT_PANEL_SW_KEYBOARD_MODE; | ||
1403 | } | ||
1404 | |||
1405 | if (ctx->klass->keyboard_mode_get) | ||
1406 | mode = ctx->klass->keyboard_mode_get(ctx); | ||
1407 | |||
1408 | return mode; | ||
1409 | } | ||