elm_atspi_bridge: correct EFL_EVNET_DEL callback parameters 00/225700/2
authorYeongjong Lee <yj34.lee@samsung.com>
Mon, 24 Feb 2020 04:02:40 +0000 (13:02 +0900)
committerYeongJong Lee <yj34.lee@samsung.com>
Mon, 24 Feb 2020 08:08:55 +0000 (08:08 +0000)
Fixes `-Wincompatible-pointer-types` compiler warnings.

@tizen_fix

Change-Id: I413ed239f6f5bfdad07b10823b6956af865f2614

src/lib/elementary/elm_atspi_bridge.c

index e827ebb..fb18c08 100644 (file)
@@ -6960,11 +6960,11 @@ obj_err:
    return NULL;
 }
 
-static Eina_Bool _from_list_remove(void *data, Eo *obj, const Efl_Event_Description *desc EINA_UNUSED, void *event_info EINA_UNUSED)
+static void
+_from_list_remove(void *data, const Efl_Event *ev)
 {
    Eina_List **list = data;
-   *list = eina_list_remove(*list, obj);
-   return EINA_TRUE;
+   *list = eina_list_remove(*list, ev->object);
 }
 
 EOLIAN void