summaryrefslogtreecommitdiff
path: root/src/lib/ecore_wl2/ecore_wl2_input.c
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2017-07-10 13:02:02 -0400
committerChris Michael <cp.michael@samsung.com>2017-07-10 13:02:02 -0400
commitff22abc4be33ae03542e6ab97acaebe77152614d (patch)
tree32339fdbe46663951f9260ada9bb90f48c0730c7 /src/lib/ecore_wl2/ecore_wl2_input.c
parent078f83f4bc21bc1b867fae79c970189db3508f2d (diff)
downloadefl-ff22abc4be33ae03542e6ab97acaebe77152614d.tar.gz
ecore-wl2: Rename internal function
As we are in the Ecore_Wl2 library, lets use a function name that reflects this. NB: No functional changes Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/ecore_wl2/ecore_wl2_input.c')
-rw-r--r--src/lib/ecore_wl2/ecore_wl2_input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ecore_wl2/ecore_wl2_input.c b/src/lib/ecore_wl2/ecore_wl2_input.c
index 8eef0158c3..407f8f5600 100644
--- a/src/lib/ecore_wl2/ecore_wl2_input.c
+++ b/src/lib/ecore_wl2/ecore_wl2_input.c
@@ -1503,7 +1503,7 @@ _ecore_wl2_devices_free(Ecore_Wl2_Input_Devices *devices)
}
static Eina_Bool
-_ecore_evas_wl_common_cb_device_event(void *data, int type, void *event)
+_ecore_wl2_cb_device_event(void *data, int type, void *event)
{
Ecore_Wl2_Input_Devices *devs, *devices = NULL;;
Ecore_Wl2_Event_Device *ev = event;
@@ -1614,11 +1614,11 @@ _ecore_wl2_input_add(Ecore_Wl2_Display *display, unsigned int id, unsigned int v
input->dev_add_handler =
ecore_event_handler_add(ECORE_WL2_EVENT_DEVICE_ADDED,
- _ecore_evas_wl_common_cb_device_event, input);
+ _ecore_wl2_cb_device_event, input);
input->dev_remove_handler =
ecore_event_handler_add(ECORE_WL2_EVENT_DEVICE_REMOVED,
- _ecore_evas_wl_common_cb_device_event, input);
+ _ecore_wl2_cb_device_event, input);
}
void