From: Jihoon Kim Date: Thu, 14 May 2015 10:35:15 +0000 (+0900) Subject: Use eina bool type instead of number X-Git-Tag: accepted/tizen/common/20150520.083917~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f4b89e50b4eed00d5bc5c88852086d085f03d596;p=platform%2Fcore%2Fuifw%2Fe-mod-tizen-wl-textinput.git Use eina bool type instead of number Change-Id: I2032231184c2f970900552d0a85b7c31402fc523 --- diff --git a/src/e_mod_main.c b/src/e_mod_main.c index 5810aaf..5907a4c 100644 --- a/src/e_mod_main.c +++ b/src/e_mod_main.c @@ -477,7 +477,7 @@ _e_text_input_cb_input_panel_show(struct wl_client *client EINA_UNUSED, struct w return; } - text_input->input_panel_visibile = 1; + text_input->input_panel_visibile = EINA_TRUE; EINA_LIST_FOREACH(text_input->input_methods, l, input_method) { @@ -501,7 +501,7 @@ _e_text_input_cb_input_panel_hide(struct wl_client *client EINA_UNUSED, struct w return; } - text_input->input_panel_visibile = 0; + text_input->input_panel_visibile = EINA_FALSE; EINA_LIST_FOREACH(text_input->input_methods, l, input_method) {