Enlightenment CVS committal

Author  : pfritz
Project : e_modules
Module  : net

Dir     : e_modules/net/src


Modified Files:
        e_mod_config.c e_mod_configure.c 


Log Message:
*API BREAK* in Ecore Data

===================================================================
RCS file: /cvs/e/e_modules/net/src/e_mod_config.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- e_mod_config.c      26 Mar 2007 01:25:10 -0000      1.8
+++ e_mod_config.c      25 Jul 2007 17:06:41 -0000      1.9
@@ -40,7 +40,7 @@
    if (!f) return NULL;
 
    devs = ecore_list_new();
-   ecore_list_set_free_cb(devs, free);
+   ecore_list_free_cb_set(devs, free);
    while (fgets(buf, 256, f)) 
      {
        int i = 0;
@@ -64,7 +64,7 @@
    if (!d) return NULL;
 
    devs = ecore_list_new();
-   ecore_list_set_free_cb(devs, free);
+   ecore_list_free_cb_set(devs, free);
    while ((dentry = readdir(d)) != NULL) 
      {
        if (strstr(dentry->d_name,".") == NULL)     
@@ -73,7 +73,7 @@
    closedir(d);
 #endif
 
-   if (devs) ecore_list_goto_first(devs);
+   if (devs) ecore_list_first_goto(devs);
    return devs;
 }
 
===================================================================
RCS file: /cvs/e/e_modules/net/src/e_mod_configure.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- e_mod_configure.c   5 Mar 2007 00:09:40 -0000       1.8
+++ e_mod_configure.c   25 Jul 2007 17:06:41 -0000      1.9
@@ -135,7 +135,7 @@
    
    of = e_widget_framelist_add(evas, D_("Device Settings"), 0);
    rg = e_widget_radio_group_new(&(cfdata->num));
-   ecore_list_goto_first(cfdata->devs);
+   ecore_list_first_goto(cfdata->devs);
    while ((tmp = ecore_list_next(cfdata->devs)) != NULL) 
      {
        ob = e_widget_radio_add(evas, tmp, i, rg);
@@ -154,7 +154,7 @@
    Config_Item *ci;
    
    ci = cfd->data;
-   tmp = ecore_list_goto_index(cfdata->devs, cfdata->num);
+   tmp = ecore_list_index_goto(cfdata->devs, cfdata->num);
    if (tmp != NULL) 
      {
        evas_stringshare_del(ci->device);



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