* estickies,

* etk,
	* PROTO/exalt,
	* E-MODULES-EXTRA/diskio,
	* E-MODULES-EXTRA/drawer,
	* E-MODULES-EXTRA/penguins,
	* E-MODULES-EXTRA/slideshow,
	* E-MODULES-EXTRA/mail,
	* E-MODULES-EXTRA/forecasts,
	* E-MODULES-EXTRA/iiirk,
	* E-MODULES-EXTRA/places,
	* e,
	* ewl,
	* ecore,
	* elitaire,
	* entrance,
	* e_dbus,
	* efreet: Here we go, move from Ecore_List to Eina_List.

	NOTE: This patch is huge, I did test it a lot, and I hope nothing is
	broken. But if you think something change after this commit, please
	contact me ASAP.


SVN revision: 39200
This commit is contained in:
Cedric BAIL 2009-02-25 11:03:47 +00:00
parent fecb1b0423
commit ee439f1cae
1 changed files with 2 additions and 2 deletions

View File

@ -889,6 +889,7 @@ void
_places_volume_all_cb(void *user_data, void *reply_data, DBusError *error)
{
E_Hal_Manager_Find_Device_By_Capability_Return *ret = reply_data;
Eina_List *l;
char *udi;
if (!ret || !ret->strings) return;
@ -900,8 +901,7 @@ _places_volume_all_cb(void *user_data, void *reply_data, DBusError *error)
return;
}
ecore_list_first_goto(ret->strings);
while ((udi = ecore_list_next(ret->strings)))
EINA_LIST_FOREACH(ret->strings, l, udi)
_places_volume_add(udi);
//TODO free ret??