evas: remove null check, passthrough list in _evas_event_object_list_in_get()

_evas_event_object_list_raw_in_get() already has a null check and uses the
last list member

no functional changes
This commit is contained in:
Mike Blumenkrantz 2017-06-09 20:16:08 -04:00
parent 9b9313882c
commit dd42f8f291
1 changed files with 1 additions and 2 deletions

View File

@ -1263,8 +1263,7 @@ _evas_event_object_list_in_get(Evas *eo_e, Eina_List *in,
const Eina_Inlist *list, Evas_Object *stop,
int x, int y, int *no_rep, Eina_Bool source)
{
if (!list) return NULL;
return _evas_event_object_list_raw_in_get(eo_e, in, list->last, stop, x, y,
return _evas_event_object_list_raw_in_get(eo_e, in, list, stop, x, y,
no_rep, source);
}