+ [Eina] API change. eina_module_list_flush() -> eina_module_list_free()

as we are on the modules context not the array.
  All the referenced projects are changed too. Remember that the list_free()
  already calls the unload() on each module so no need to call list_unload()



SVN revision: 44978
This commit is contained in:
Jorge Luis Zapata Muga 2010-01-08 12:22:23 +00:00
parent 0df20ebd86
commit 33fdfb9322
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ e_modapi_shutdown(E_Module *m __UNUSED__)
if (plugins)
{
eina_module_list_unload(plugins);
eina_module_list_flush(plugins);
eina_module_list_free(plugins);
eina_array_free(plugins);
}