Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : proto

Dir     : e17/proto/ephoto/src


Modified Files:
        ephoto_misc.c 


Log Message:
Fixup for the audio combo.

===================================================================
RCS file: /cvs/e/e17/proto/ephoto/src/ephoto_misc.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ephoto_misc.c       5 Apr 2006 14:58:40 -0000       1.6
+++ ephoto_misc.c       5 Apr 2006 18:11:00 -0000       1.7
@@ -133,7 +133,7 @@
 }
 
 Ewl_Widget *
-_data_header_fetch()
+_data_header_fetch(void *data, int col)
 {
        Ewl_Widget *header;
 
@@ -145,10 +145,11 @@
 }
 
 void *
-_data_fetch()
+_data_fetch(void *data, unsigned int row, unsigned int col)
 {
        char *path;
-       path = ecore_list_next(audiofiles);
+       Ecore_List *audiofiles = data;
+       path = ecore_list_goto_index(audiofiles, row);
        if ( path != NULL ) {
                return path;
        }
@@ -158,9 +159,11 @@
 }
 
 int
-_data_count_get()
+_data_count_get(void *data)
 {
        int items;
+       Ecore_List *audiofiles = data;
+
        items = ecore_list_nodes(audiofiles);
        return items;
 }




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