Use eina bool type instead of number 98/39398/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 14 May 2015 10:35:15 +0000 (19:35 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 14 May 2015 10:35:15 +0000 (19:35 +0900)
Change-Id: I2032231184c2f970900552d0a85b7c31402fc523

src/e_mod_main.c

index 5810aaf..5907a4c 100644 (file)
@@ -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)
      {