e_input: renamed e_input_get_ecore_evas to e_input_ecore_evas_get
authorGwanglim Lee <gl77.lee@samsung.com>
Tue, 14 Nov 2017 11:47:08 +0000 (20:47 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Tue, 14 Nov 2017 11:47:08 +0000 (20:47 +0900)
Change-Id: I248dd515a4c6364f22300ce635435a7a3bf4e308

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

index 9156e9ae44b3344292b0c535b768c10c4ab2a0ba..4f26f62348bf2ae0f19f18e2c51483a68c28aaab 100644 (file)
@@ -133,7 +133,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 48e12ffa7357b76ca84785d782755ab0db28eea1..d16660a2a36b2c8b72286d3b284aff0bbde8fe4a 100644 (file)
@@ -79,7 +79,7 @@ struct _E_Input_Device
 EINTERN int e_input_init(Ecore_Evas *ee);
 EINTERN int e_input_shutdown(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 89b50835ff5746df2ee47169a293e6dce22834e0..dd5c6b8d35bc3f39477f59bf9de9574c5b175763 100644 (file)
@@ -20,7 +20,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);
@@ -156,7 +156,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);