Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_utils.c 


Log Message:
Remove stupid cast.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_utils.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -3 -r1.56 -r1.57
--- e_utils.c   29 Dec 2006 02:56:26 -0000      1.56
+++ e_utils.c   12 Jan 2007 13:24:53 -0000      1.57
@@ -419,12 +419,12 @@
 EAPI int
 e_util_menu_item_edje_icon_set(E_Menu_Item *mi, const char *name)
 {
-   char *file;
+   const char *file;
    char buf[4096];
    
    if ((!name) || (!name[0])) return 0;
    snprintf(buf, sizeof(buf), "e/icons/%s", name);
-   file = (char *)e_theme_edje_file_get("base/theme/icons", buf);
+   file = e_theme_edje_file_get("base/theme/icons", buf);
    if (file[0])
      {
        e_menu_item_icon_edje_set(mi, file, buf);



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to