diff --git a/src/lib/ecore_wl2/Ecore_Wl2.h b/src/lib/ecore_wl2/Ecore_Wl2.h index c7105500b1..484708287c 100644 --- a/src/lib/ecore_wl2/Ecore_Wl2.h +++ b/src/lib/ecore_wl2/Ecore_Wl2.h @@ -1524,19 +1524,6 @@ EAPI Eina_Stringshare *ecore_wl2_input_name_get(Ecore_Wl2_Input *input); */ EAPI Eina_Bool ecore_wl2_input_keyboard_repeat_get(const Ecore_Wl2_Input *input, double *rate, double *delay); -/** - * Get the Evas_Device for the seat belonging to a window from an input - * - * @param input The input - * @param window The window - * - * @return The device object - * - * @ingroup Ecore_Wl2_Input_Group - * @since 1.20 - */ -EAPI Eo *ecore_wl2_input_seat_device_get(const Ecore_Wl2_Input *input, const Ecore_Wl2_Window *window); - /** * Retrieves the mouse position of the seat * diff --git a/src/lib/ecore_wl2/ecore_wl2_input.c b/src/lib/ecore_wl2/ecore_wl2_input.c index 67a2dcba80..6694f3687d 100644 --- a/src/lib/ecore_wl2/ecore_wl2_input.c +++ b/src/lib/ecore_wl2/ecore_wl2_input.c @@ -1824,17 +1824,6 @@ ecore_wl2_input_keyboard_repeat_get(const Ecore_Wl2_Input *input, double *rate, return input->repeat.enabled; } -EAPI Eo * -ecore_wl2_input_seat_device_get(const Ecore_Wl2_Input *input, const Ecore_Wl2_Window *window) -{ - Ecore_Wl2_Input_Devices *devices; - EINA_SAFETY_ON_NULL_RETURN_VAL(input, NULL); - EINA_SAFETY_ON_NULL_RETURN_VAL(window, NULL); - - devices = _ecore_wl2_devices_get(input, window); - return devices ? devices->seat_dev : NULL; -} - EAPI void ecore_wl2_input_pointer_set(Ecore_Wl2_Input *input, struct wl_surface *surface, int hot_x, int hot_y) {