Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_int_border_remember.c 


Log Message:
Remove cast

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_border_remember.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_int_border_remember.c     14 Aug 2006 15:22:45 -0000      1.11
+++ e_int_border_remember.c     21 Aug 2006 16:08:45 -0000      1.12
@@ -145,15 +145,15 @@
 {
    Evas_List *l;
    int n = 0;
-   char *title;
+   const char *title;
    
-   title = (char *)e_border_name_get(bd);
+   title = e_border_name_get(bd);
    for (l = e_border_client_list(); l; l = l->next)
      {
        E_Border *bd2;
        int required_matches;
        int matches;
-       char *title2;
+       const char *title2;
        
        bd2 = l->data;
         matches = 0;
@@ -164,7 +164,7 @@
        if (matchflags & E_REMEMBER_MATCH_ROLE) required_matches++;
        if (matchflags & E_REMEMBER_MATCH_TYPE) required_matches++;
        if (matchflags & E_REMEMBER_MATCH_TRANSIENT) required_matches++;
-       title2 = (char *)e_border_name_get(bd2);
+       title2 = e_border_name_get(bd2);
         if ((matchflags & E_REMEMBER_MATCH_NAME) &&
            ((!e_util_strcmp(bd->client.icccm.name, bd2->client.icccm.name)) ||
             (e_util_both_str_empty(bd->client.icccm.name, 
bd2->client.icccm.name))))



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to