devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=7fe34af84b471ae59f171ba8587ab057c9e163b8
commit 7fe34af84b471ae59f171ba8587ab057c9e163b8 Author: Chris Michael <cp.mich...@samsung.com> Date: Mon Mar 10 13:58:20 2014 +0000 ecore-evas-wayland: Remove unused function & declaration Remove unused function and it's declaration. This function is not being called from anywhere anymore, so it's no longer needed. Signed-off-by: Chris Michael <cp.mich...@samsung.com> --- .../engines/wayland/ecore_evas_wayland_common.c | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c index 90223f8..dd0edd7 100644 --- a/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c +++ b/src/modules/ecore_evas/engines/wayland/ecore_evas_wayland_common.c @@ -36,7 +36,6 @@ EVAS_SMART_SUBCLASS_NEW(_smart_frame_type, _ecore_evas_wl_frame, static int _ecore_evas_wl_init_count = 0; static Ecore_Event_Handler *_ecore_evas_wl_event_hdls[5]; -static void _ecore_evas_wayland_resize_edge_set(Ecore_Evas *ee, int edge); static void _ecore_evas_wayland_resize(Ecore_Evas *ee, int location); /* local function prototypes */ @@ -1521,24 +1520,6 @@ _ecore_evas_wl_common_screen_dpi_get(const Ecore_Evas *ee EINA_UNUSED, int *xdpi if (ydpi) *ydpi = dpi; } -static void -_ecore_evas_wayland_resize_edge_set(Ecore_Evas *ee, int edge) -{ - if (!ee) return; - if (!strcmp(ee->driver, "wayland_shm")) - { -#ifdef BUILD_ECORE_EVAS_WAYLAND_SHM - _ecore_evas_wayland_shm_resize_edge_set(ee, edge); -#endif - } - else if (!strcmp(ee->driver, "wayland_egl")) - { -#ifdef BUILD_ECORE_EVAS_WAYLAND_EGL - _ecore_evas_wayland_egl_resize_edge_set(ee, edge); -#endif - } -} - static void _ecore_evas_wayland_resize(Ecore_Evas *ee, int location) { --