Enlightenment CVS committal Author : e-taro Project : e17 Module : apps/e
Dir : e17/apps/e/src/bin Modified Files: e_int_config_modules.c Log Message: remove these casts - don't need them now thanks to stafford's const char * work =================================================================== RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_int_config_modules.c,v retrieving revision 1.26 retrieving revision 1.27 diff -u -3 -r1.26 -r1.27 --- e_int_config_modules.c 2 Mar 2006 12:03:48 -0000 1.26 +++ e_int_config_modules.c 4 Mar 2006 07:58:17 -0000 1.27 @@ -73,7 +73,7 @@ obj = data; v = e_widget_ilist_selected_label_get(obj); - m = e_module_find((char *)v); + m = e_module_find(v); if (m) { if (m->func.config) @@ -90,7 +90,7 @@ obj = data; v = e_widget_ilist_selected_label_get(obj); - m = e_module_find((char *)v); + m = e_module_find(v); if (m) { if (m->func.about) @@ -193,10 +193,10 @@ e_widget_disabled_set(cfdata->gui.configure, 1); e_widget_disabled_set(cfdata->gui.about, 1); - m = e_module_find((char *)v); + m = e_module_find(v); if (!m) { - m = e_module_new((char *)v); + m = e_module_new(v); if (!m) break; } switch (cfdata->state) @@ -382,7 +382,7 @@ } e_widget_disabled_set(cfdata->gui.about, 1); e_widget_disabled_set(cfdata->gui.configure, 1); - m = e_module_find((char *)v); + m = e_module_find(v); if (m) { if (m->func.about) ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs