diff --git a/legacy/ecore/src/lib/ecore_evas/ecore_evas_wayland_shm.c b/legacy/ecore/src/lib/ecore_evas/ecore_evas_wayland_shm.c index 2f18299739..057cd17469 100644 --- a/legacy/ecore/src/lib/ecore_evas/ecore_evas_wayland_shm.c +++ b/legacy/ecore/src/lib/ecore_evas/ecore_evas_wayland_shm.c @@ -2,7 +2,7 @@ # include "config.h" #endif -//#define LOGFNS 1 +#define LOGFNS 1 #ifdef LOGFNS # include @@ -269,17 +269,6 @@ ecore_evas_wayland_shm_new(const char *disp_name, int x, int y, int w, int h, in return ee; } -EAPI void -ecore_evas_wayland_shm_resize(Ecore_Evas *ee, int location) -{ - LOGFN(__FILE__, __LINE__, __FUNCTION__); - - if ((!ee) || (!ee->engine.wl.shell_surface)) return; - wl_shell_surface_resize(ee->engine.wl.shell_surface, - ecore_wl_input_device_get(), - _ecore_evas_wl_btn_timestamp, location); -} - /* local functions */ static int _ecore_evas_wl_init(void) @@ -1227,16 +1216,21 @@ _ecore_evas_wl_frame_add(Evas *evas) return evas_object_smart_add(evas, _ecore_evas_wl_smart); } +void +_ecore_evas_wayland_shm_resize(Ecore_Evas *ee, int location) +{ + LOGFN(__FILE__, __LINE__, __FUNCTION__); + + if ((!ee) || (!ee->engine.wl.shell_surface)) return; + wl_shell_surface_resize(ee->engine.wl.shell_surface, + ecore_wl_input_device_get(), + _ecore_evas_wl_btn_timestamp, location); +} + #else EAPI Ecore_Evas * ecore_evas_wayland_shm_new(const char *disp_name __UNUSED__, int x __UNUSED__, int y __UNUSED__, int w __UNUSED__, int h __UNUSED__, int frame __UNUSED__) { return NULL; } - -EAPI void -ecore_evas_wayland_shm_resize(Ecore_Evas *ee __UNUSED__, int location __UNUSED__) -{ - -} #endif