Enlightenment CVS committal Author : sebastid Project : e17 Module : apps/e
Dir : e17/apps/e/src/bin Modified Files: e_apps.c e_apps.h e_utils.c e_utils.h Log Message: Remove some compiler warnings. =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_apps.c,v retrieving revision 1.60 retrieving revision 1.61 diff -u -3 -r1.60 -r1.61 --- e_apps.c 11 Aug 2005 04:17:07 -0000 1.60 +++ e_apps.c 31 Aug 2005 04:49:05 -0000 1.61 @@ -520,7 +520,8 @@ } E_App * -e_app_window_name_class_title_role_find(char *name, char *class, char *title, char *role) +e_app_window_name_class_title_role_find(const char *name, const char *class, + const char *title, const char *role) { Evas_List *l; =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_apps.h,v retrieving revision 1.17 retrieving revision 1.18 diff -u -3 -r1.17 -r1.18 --- e_apps.h 30 Jul 2005 07:46:04 -0000 1.17 +++ e_apps.h 31 Aug 2005 04:49:05 -0000 1.18 @@ -79,7 +79,8 @@ EAPI void e_app_change_callback_add(void (*func) (void *data, E_App *a, E_App_Change ch), void *data); EAPI void e_app_change_callback_del(void (*func) (void *data, E_App *a, E_App_Change ch), void *data); -EAPI E_App *e_app_window_name_class_title_role_find(char *name, char *class, char *title, char *role); +EAPI E_App *e_app_window_name_class_title_role_find(const char *name, const char *class, + const char *title, const char *role); EAPI E_App *e_app_file_find(char *file); EAPI E_App *e_app_name_find(char *name); EAPI E_App *e_app_generic_find(char *generic); =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_utils.c,v retrieving revision 1.24 retrieving revision 1.25 diff -u -3 -r1.24 -r1.25 --- e_utils.c 25 Aug 2005 13:41:26 -0000 1.24 +++ e_utils.c 31 Aug 2005 04:49:05 -0000 1.25 @@ -121,7 +121,7 @@ } int -e_util_glob_match(char *str, char *glob) +e_util_glob_match(const char *str, const char *glob) { if (glob[0] == 0) { =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_utils.h,v retrieving revision 1.16 retrieving revision 1.17 diff -u -3 -r1.16 -r1.17 --- e_utils.h 23 Aug 2005 03:50:02 -0000 1.16 +++ e_utils.h 31 Aug 2005 04:49:05 -0000 1.17 @@ -13,7 +13,7 @@ EAPI E_Zone *e_util_zone_current_get(E_Manager *man); EAPI int e_util_utils_installed(void); EAPI int e_util_app_installed(char *app); -EAPI int e_util_glob_match(char *str, char *glob); +EAPI int e_util_glob_match(const char *str, const char *glob); EAPI E_Container *e_util_container_number_get(int num); EAPI E_Zone *e_util_container_zone_number_get(int con_num, int zone_num); EAPI int e_util_head_exec(int head, char *cmd); ------------------------------------------------------- SF.Net email is Sponsored by the Better Software Conference & EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs