From ff22abc4be33ae03542e6ab97acaebe77152614d Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 10 Jul 2017 13:02:02 -0400 Subject: [PATCH] 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 --- src/lib/ecore_wl2/ecore_wl2_input.c | 6 +++--- 1 file 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 8eef015..407f8f5 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 -- 2.7.4