Enlightenment CVS committal

Author  : englebass
Project : e17
Module  : proto

Dir     : e17/proto/e_dbus/src/lib/dbus


Modified Files:
        e_dbus_object.c 


Log Message:
interfaces is a list, not dlist

===================================================================
RCS file: /cvs/e/e17/proto/e_dbus/src/lib/dbus/e_dbus_object.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- e_dbus_object.c     23 Jul 2007 12:30:25 -0000      1.12
+++ e_dbus_object.c     23 Jul 2007 14:30:16 -0000      1.13
@@ -295,7 +295,7 @@
   found = ecore_list_goto(obj->interfaces, iface);
   if (found == NULL) return;
 
-  ecore_dlist_remove(obj->interfaces);
+  ecore_list_remove(obj->interfaces);
   obj->introspection_dirty = 1;
   e_dbus_interface_unref(iface);
 }
@@ -474,7 +474,7 @@
   level++;
 
   ecore_list_goto_first(obj->interfaces);
-  while((iface = ecore_list_next(obj->interfaces)))
+  while ((iface = ecore_list_next(obj->interfaces)))
     _introspect_interface_append(buf, iface, level);
 
   ecore_strbuf_append(buf, "</node>\n");



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