Evas :The doc say "This function removes the most recently added callback", consequently we have te prepend the items

SVN revision: 43103
This commit is contained in:
Jonathan Atton 2009-10-15 20:50:15 +00:00
parent 1d7020335a
commit 75303b4b5b
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ evas_object_event_callback_add(Evas_Object *obj, Evas_Callback_Type type, void (
return;
}
obj->callbacks->callbacks =
eina_inlist_append(obj->callbacks->callbacks, EINA_INLIST_GET(fn));
eina_inlist_prepend(obj->callbacks->callbacks, EINA_INLIST_GET(fn));
}
/**