* 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 49896afa7f
commit 4550adade4
1 changed files with 4 additions and 6 deletions

10
mdir.c
View File

@ -95,18 +95,16 @@ _mail_mdir_check_mail (void *data, Ecore_File_Monitor * monitor,
static int
_mail_mdir_get_files (const char *path)
{
Ecore_List *l;
Eina_List *l;
char *item;
int i = 0;
l = ecore_file_ls (path);
ecore_list_first_goto (l);
while ((item = (char *) ecore_list_next (l)) != NULL)
EINA_LIST_FREE(l, item)
{
if ((!strcmp (item, ".")) || (!strcmp (item, "..")))
continue;
if (!((!strcmp (item, ".")) || (!strcmp (item, ".."))))
i++;
free(item);
}
ecore_list_destroy (l);
return i;
}