Remove build warning from ecore_wl_input.c, _window.c
I did remove unused variable and add EINA_UNUSED for unused parameter.
Also, I added type casting for 'uintptr' type
Change-Id: I8a53efbd1712debc3331627d8e2da4bcb4176c0c
}
else
{
- e->window = NULL;
- e->event_window = NULL;
+ e->window = (uintptr_t)NULL;
+ e->event_window = (uintptr_t)NULL;
}
//
e->timestamp = timestamp;
}
static Eina_Bool
-_ecore_wl_input_del_ecore_device(const char *name, const char *identifier, Ecore_Device_Class clas)
+_ecore_wl_input_del_ecore_device(const char *name EINA_UNUSED, const char *identifier, Ecore_Device_Class clas)
{
const Eina_List *dev_list = NULL;
const Eina_List *l;
{
Ecore_Wl_Window *win;
static int _win_id = 1;
- struct wl_compositor *wlcomp;
LOGFN(__FILE__, __LINE__, __FUNCTION__);
EAPI void
ecore_wl_window_input_rect_set(Ecore_Wl_Window *win, Eina_Rectangle *input_rect)
{
- Eina_Bool unset = EINA_FALSE;
if (!win) return;
if (!input_rect) return;
if (win->input_region)