Enlightenment CVS committal

Author  : rephorm
Project : e17
Module  : libs/estyle

Dir     : e17/libs/estyle/src


Modified Files:
        estyle.c estyle_style.c 


Log Message:

put things in the right order (member first, THEN smart object)

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/estyle/src/estyle.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -3 -r1.32 -r1.33
--- estyle.c    27 Jan 2004 17:01:28 -0000      1.32
+++ estyle.c    28 Jan 2004 05:06:30 -0000      1.33
@@ -60,7 +60,7 @@
        evas_object_text_font_set(es->bit, DEFAULT_FONT, DEFAULT_SIZE);
 
        obj = evas_object_smart_add(evas, estyle_smart);
-       evas_object_smart_member_add(obj, es->bit);
+       evas_object_smart_member_add(es->bit, obj);
        evas_object_smart_data_set(obj, es);
        es->smart_obj = obj;
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/estyle/src/estyle_style.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- estyle_style.c      18 Oct 2003 16:22:46 -0000      1.13
+++ estyle_style.c      28 Jan 2004 05:06:30 -0000      1.14
@@ -194,7 +194,7 @@
        while ((layer = _estyle_heap_item(info->layers, i))) {
                ob = __estyle_style_layer_draw(layer, es, text);
                ((Estyle_Style *) es->style)->bits = evas_list_append( ((Estyle_Style 
*)es->style)->bits, ob );
-               evas_object_smart_member_add(es->smart_obj, ob);
+               evas_object_smart_member_add(ob, es->smart_obj);
                i++;
        }
 




-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to