Enlightenment CVS committal

Author  : lordchaos
Project : e17
Module  : proto

Dir     : e17/proto/entropy/src/plugins


Modified Files:
        etk_list_viewer.c 


Log Message:
* Sort case insensitively

===================================================================
RCS file: 
/cvsroot/enlightenment/e17/proto/entropy/src/plugins/etk_list_viewer.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- etk_list_viewer.c   27 Feb 2006 08:25:56 -0000      1.24
+++ etk_list_viewer.c   27 Feb 2006 08:27:22 -0000      1.25
@@ -93,7 +93,7 @@
    file2 = ecore_hash_get(row_hash, row2);
   
    if (file1 && file2) {
-        val = strcmp(file1->file->filename, file2->file->filename);
+        val = strcasecmp(file1->file->filename, file2->file->filename);
         
         if ( !strcmp(file1->file->mime_type, "file/folder") && 
strcmp(file2->file->mime_type, "file/folder"))
                 return -1;




-------------------------------------------------------
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

Reply via email to