Don't del order objects on shutdown, it's the job of the creators.

SVN revision: 29363
This commit is contained in:
Sebastian Dransfeld 2007-04-05 06:06:39 +00:00
parent 8734a65956
commit 74ab197e1b
1 changed files with 1 additions and 8 deletions

View File

@ -26,14 +26,7 @@ e_order_init(void)
EAPI int
e_order_shutdown(void)
{
Evas_List *l, *tmp;
for (l = orders; l;)
{
tmp = l;
l = l->next;
e_object_del(E_OBJECT(tmp->data));
}
orders = evas_list_free(orders);
return 1;
}