summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2020-01-08 11:13:11 -0500
committerChristopher Michael <cp.michael@samsung.com>2020-01-08 11:13:11 -0500
commitad3e3bba3bf8bb6080f0ad49992df81b05eb4187 (patch)
tree8acc132aba896fd096116ba9ed66b0d67712a9ed
parentd8c0080dba592668869f83134be51766eaf6b3d2 (diff)
downloadefl-ad3e3bba3bf8bb6080f0ad49992df81b05eb4187.tar.gz
ecore-wl2: Remove unused API
This API is not used Anywhere inside EFL, Enlightenment, Or Tizen so there is really no need for it to exist....one less unused API to worry about.
-rw-r--r--src/lib/ecore_wl2/Ecore_Wl2.h13
-rw-r--r--src/lib/ecore_wl2/ecore_wl2_input.c11
2 files changed, 0 insertions, 24 deletions
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
@@ -1525,19 +1525,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
*
* @param input 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)
{