ecore_imf_context.c: fix formatting

SVN revision: 67779
This commit is contained in:
Jihoon Kim 2012-02-09 03:53:03 +00:00
parent 3c9c59c5a5
commit 09d8eb2f1d
1 changed files with 9 additions and 11 deletions

View File

@ -1166,7 +1166,7 @@ ecore_imf_context_event_callback_call(Ecore_IMF_Context *ctx, Ecore_IMF_Callback
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI void EAPI void
ecore_imf_context_control_panel_show (Ecore_IMF_Context *ctx) ecore_imf_context_control_panel_show(Ecore_IMF_Context *ctx)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
{ {
@ -1186,7 +1186,7 @@ ecore_imf_context_control_panel_show (Ecore_IMF_Context *ctx)
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI void EAPI void
ecore_imf_context_control_panel_hide (Ecore_IMF_Context *ctx) ecore_imf_context_control_panel_hide(Ecore_IMF_Context *ctx)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
{ {
@ -1247,7 +1247,7 @@ ecore_imf_context_input_panel_hide(Ecore_IMF_Context *ctx)
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI void EAPI void
ecore_imf_context_input_panel_layout_set (Ecore_IMF_Context *ctx, Ecore_IMF_Input_Panel_Layout layout) ecore_imf_context_input_panel_layout_set(Ecore_IMF_Context *ctx, Ecore_IMF_Input_Panel_Layout layout)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
{ {
@ -1271,7 +1271,7 @@ ecore_imf_context_input_panel_layout_set (Ecore_IMF_Context *ctx, Ecore_IMF_Inpu
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI Ecore_IMF_Input_Panel_Layout EAPI Ecore_IMF_Input_Panel_Layout
ecore_imf_context_input_panel_layout_get (Ecore_IMF_Context *ctx) ecore_imf_context_input_panel_layout_get(Ecore_IMF_Context *ctx)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
{ {
@ -1281,9 +1281,7 @@ ecore_imf_context_input_panel_layout_get (Ecore_IMF_Context *ctx)
} }
if (ctx->klass->input_panel_layout_get) if (ctx->klass->input_panel_layout_get)
{ return ctx->input_panel_layout;
return ctx->input_panel_layout;
}
else else
return ECORE_IMF_INPUT_PANEL_LAYOUT_INVALID; return ECORE_IMF_INPUT_PANEL_LAYOUT_INVALID;
} }
@ -1298,7 +1296,7 @@ ecore_imf_context_input_panel_layout_get (Ecore_IMF_Context *ctx)
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI void EAPI void
ecore_imf_context_input_panel_language_set (Ecore_IMF_Context *ctx, Ecore_IMF_Input_Panel_Lang lang) ecore_imf_context_input_panel_language_set(Ecore_IMF_Context *ctx, Ecore_IMF_Input_Panel_Lang lang)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
{ {
@ -1322,7 +1320,7 @@ ecore_imf_context_input_panel_language_set (Ecore_IMF_Context *ctx, Ecore_IMF_In
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI Ecore_IMF_Input_Panel_Lang EAPI Ecore_IMF_Input_Panel_Lang
ecore_imf_context_input_panel_language_get (Ecore_IMF_Context *ctx) ecore_imf_context_input_panel_language_get(Ecore_IMF_Context *ctx)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
{ {
@ -1344,7 +1342,7 @@ ecore_imf_context_input_panel_language_get (Ecore_IMF_Context *ctx)
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI void EAPI void
ecore_imf_context_input_panel_enabled_set (Ecore_IMF_Context *ctx, ecore_imf_context_input_panel_enabled_set(Ecore_IMF_Context *ctx,
Eina_Bool enabled) Eina_Bool enabled)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
@ -1366,7 +1364,7 @@ ecore_imf_context_input_panel_enabled_set (Ecore_IMF_Context *ctx,
* @since 1.1.0 * @since 1.1.0
*/ */
EAPI Eina_Bool EAPI Eina_Bool
ecore_imf_context_input_panel_enabled_get (Ecore_IMF_Context *ctx) ecore_imf_context_input_panel_enabled_get(Ecore_IMF_Context *ctx)
{ {
if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT)) if (!ECORE_MAGIC_CHECK(ctx, ECORE_MAGIC_CONTEXT))
{ {