e_input: renamed e_input_get_ecore_evas to e_input_ecore_evas_get 85/169485/2
authorGwanglim Lee <gl77.lee@samsung.com>
Tue, 14 Nov 2017 11:47:08 +0000 (20:47 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Mon, 19 Mar 2018 09:59:58 +0000 (09:59 +0000)
Change-Id: I248dd515a4c6364f22300ce635435a7a3bf4e308

src/bin/e_input.c
src/bin/e_input.h
src/bin/e_input_inputs.c

index ef82aa4..53f5a53 100644 (file)
@@ -242,7 +242,7 @@ e_input_get()
 }
 
 EINTERN Ecore_Evas *
-e_input_get_ecore_evas(E_Input *ei)
+e_input_ecore_evas_get(E_Input *ei)
 {
    if (ei) return ei->ee;
    return NULL;
index 3a300fb..99c0471 100644 (file)
@@ -91,7 +91,7 @@ EINTERN int e_input_shutdown(void);
 EINTERN const char *e_input_base_dir_get(void);
 EINTERN Eina_Bool e_input_thread_enabled_get(void);
 EINTERN E_Input *e_input_get(void);
-EINTERN Evas *e_input_get_evas(E_Input *ei);
+EINTERN Ecore_Evas *e_input_ecore_evas_get(E_Input *ei);
 
 EINTERN E_Input_Device *e_input_device_open(void);
 EINTERN Eina_Bool e_input_device_close(E_Input_Device *dev);
index 9e0c90d..9452ac9 100644 (file)
@@ -13,7 +13,7 @@ _seat_create(E_Input_Backend *input, const char *seat)
    ei = e_input_get();
    if (!ei) return NULL;
 
-   ee = e_input_get_ecore_evas(ei);
+   ee = e_input_ecore_evas_get(ei);
    if (!ee) return NULL;
 
    evs = ecore_evas_get(ee);
@@ -149,7 +149,7 @@ _e_input_add_evas_device(E_Input_Evdev *edev, Evas_Device_Class clas)
    ei = e_input_get();
    if (!ei) return EINA_FALSE;
 
-   ee = e_input_get_ecore_evas(ei);
+   ee = e_input_ecore_evas_get(ei);
    if (!ee) return EINA_FALSE;
 
    evs = ecore_evas_get(ee);