Enlightenment CVS committal Author : englebass Project : e17 Module : libs/etk
Dir : e17/libs/etk/src/lib Modified Files: etk_object.c Log Message: fix compiler warnings =================================================================== RCS file: /cvs/e/e17/libs/etk/src/lib/etk_object.c,v retrieving revision 1.43 retrieving revision 1.44 diff -u -3 -r1.43 -r1.44 --- etk_object.c 30 Sep 2007 02:22:55 -0000 1.43 +++ etk_object.c 8 Jul 2008 04:34:52 -0000 1.44 @@ -35,9 +35,9 @@ static void _etk_object_property_get(Etk_Object *object, int property_id, Etk_Property_Value *value); static void _etk_object_free(Etk_Object *object); -static Evas_Bool _etk_object_notification_callbacks_clean_cb(Evas_Hash *hash, const char *key, void *data, void *fdata); -static Evas_Bool _etk_object_notification_callbacks_free_cb(Evas_Hash *hash, const char *key, void *data, void *fdata); -static Evas_Bool _etk_object_data_free_cb(Evas_Hash *hash, const char *key, void *data, void *fdata); +static Evas_Bool _etk_object_notification_callbacks_clean_cb(const Evas_Hash *hash, const char *key, void *data, void *fdata); +static Evas_Bool _etk_object_notification_callbacks_free_cb(const Evas_Hash *hash, const char *key, void *data, void *fdata); +static Evas_Bool _etk_object_data_free_cb(const Evas_Hash *hash, const char *key, void *data, void *fdata); static Etk_Object *_etk_object_objects = NULL; static Etk_Object *_etk_object_last_object = NULL; @@ -799,7 +799,7 @@ } /* Removes the notification-callbacks marked as "deleted" from the list (called by etk_object_notify()) */ -static Evas_Bool _etk_object_notification_callbacks_clean_cb(Evas_Hash *hash, const char *key, void *data, void *fdata) +static Evas_Bool _etk_object_notification_callbacks_clean_cb(const Evas_Hash *hash, const char *key, void *data, void *fdata) { Evas_List *l, *next; Evas_List **callbacks; @@ -824,7 +824,7 @@ } /* Frees a list of notification callbacks (called by _etk_object_destructor()) */ -static Evas_Bool _etk_object_notification_callbacks_free_cb(Evas_Hash *hash, const char *key, void *data, void *fdata) +static Evas_Bool _etk_object_notification_callbacks_free_cb(const Evas_Hash *hash, const char *key, void *data, void *fdata) { Evas_List **list; @@ -842,7 +842,7 @@ } /* Frees data from the data hash of the object */ -static Evas_Bool _etk_object_data_free_cb(Evas_Hash *hash, const char *key, void *data, void *fdata) +static Evas_Bool _etk_object_data_free_cb(const Evas_Hash *hash, const char *key, void *data, void *fdata) { Etk_Object_Data *object_data; ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs