From 3bc4951ea1ea4095e899f1836a9d066ccaad8e7c Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Mon, 13 Feb 2012 11:27:14 +0000 Subject: [PATCH] Fix return type of elm_entry_input_panel_hide SVN revision: 67880 --- src/lib/elm_entry.c | 2 +- src/lib/elm_entry.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index 1cd3b80..a913a83 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -3585,7 +3585,7 @@ elm_entry_input_panel_show(Evas_Object *obj) edje_object_part_text_input_panel_show(wd->ent, "elm.text"); } -EAPI Eina_Bool +EAPI void elm_entry_input_panel_hide(Evas_Object *obj) { ELM_CHECK_WIDTYPE(obj, widtype); diff --git a/src/lib/elm_entry.h b/src/lib/elm_entry.h index 3586de3..e59deec 100644 --- a/src/lib/elm_entry.h +++ b/src/lib/elm_entry.h @@ -1130,7 +1130,7 @@ EAPI void elm_entry_input_panel_show(Evas_Object *obj); * * @param obj The entry object */ -EAPI Eina_Bool elm_entry_input_panel_hide(Evas_Object *obj); +EAPI void elm_entry_input_panel_hide(Evas_Object *obj); /* pre-made filters for entries */ -- 2.7.4