Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/bin/tests/list


Modified Files:
        ewl_list.c 


Log Message:
*API BREAK* see the discussion in the mailing list. misc and e_modules will 
follow

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/list/ewl_list.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- ewl_list.c  29 Jun 2007 14:48:55 -0000      1.12
+++ ewl_list.c  25 Jul 2007 17:00:59 -0000      1.13
@@ -238,7 +238,7 @@
        el = ewl_mvc_data_get(EWL_MVC(list));
        idx = ewl_mvc_selected_get(EWL_MVC(list));
 
-       ecore_list_goto_index(el, idx->row);
+       ecore_list_index_goto(el, idx->row);
        printf("Selected (%d) (%s)\n", idx->row, 
                        (char *)ecore_list_current(el));
 }
@@ -255,7 +255,7 @@
        el = ewl_mvc_data_get(EWL_MVC(w));
        selected = ewl_mvc_selected_list_get(EWL_MVC(w));
 
-       ecore_list_goto_first(selected);
+       ecore_list_first_goto(selected);
        while ((sel = ecore_list_next(selected)))
        {
                if (sel->type == EWL_SELECTION_TYPE_INDEX)
@@ -263,7 +263,7 @@
                        Ewl_Selection_Idx *idx;
 
                        idx = EWL_SELECTION_IDX(sel);
-                       ecore_list_goto_index(el, idx->row);
+                       ecore_list_index_goto(el, idx->row);
                        printf("    %d (%s)\n", idx->row, 
                                        (char *)ecore_list_current(el));
                }
@@ -275,7 +275,7 @@
                        idx = EWL_SELECTION_RANGE(sel);
                        for (i = idx->start.row; i <= idx->end.row; i++)
                        {
-                               ecore_list_goto_index(el, i);
+                               ecore_list_index_goto(el, i);
                                printf("    %d (%s)\n", i, 
                                        (char *)ecore_list_current(el));
                        }



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to