Ecore_List -> Eina_List
This commit is contained in:
@@ -43,11 +43,11 @@ ecdb_shutdown(void *data, int type, void *event)
|
||||
{
|
||||
if (em->drives)
|
||||
{
|
||||
ecore_list_destroy(em->drives);
|
||||
ecdb_drive_info_list_free(em->drives);
|
||||
}
|
||||
if (em->dnd_candidates)
|
||||
{
|
||||
ecore_list_destroy(em->dnd_candidates);
|
||||
eina_list_free(em->dnd_candidates);
|
||||
}
|
||||
FREE(em);
|
||||
|
||||
@@ -181,6 +181,7 @@ ecdb_button_icon_swallow(Evas *e, Evas_Object *b, const char *iname)
|
||||
int
|
||||
ecdb_dnd_position(void *data, int type, void *event)
|
||||
{
|
||||
Eina_List *l;
|
||||
Ecore_X_Event_Xdnd_Position *ev;
|
||||
Evas_Object *o;
|
||||
Ecore_X_Rectangle rect;
|
||||
@@ -194,8 +195,8 @@ ecdb_dnd_position(void *data, int type, void *event)
|
||||
|
||||
ecore_evas_geometry_get(em->main_win_ee, &window_x, &window_y, &window_w,
|
||||
&window_h);
|
||||
ecore_list_first_goto(em->dnd_candidates);
|
||||
while ((o = ecore_list_next(em->dnd_candidates)))
|
||||
em->dnd_candidates = eina_list_nth_list(em->dnd_candidates, 0);
|
||||
EINA_LIST_FOREACH(em->dnd_candidates, l, o)
|
||||
{
|
||||
if (evas_object_visible_get(o))
|
||||
{
|
||||
|
Reference in New Issue
Block a user