Enlightenment CVS committal

Author  : metrics
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_box.c 


Log Message:
Fix function name spelling.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_box.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- e_box.c     13 Mar 2006 09:55:16 -0000      1.16
+++ e_box.c     8 Nov 2006 10:36:34 -0000       1.17
@@ -45,7 +45,7 @@
 static void        _e_box_smart_disown(Evas_Object *obj);
 static void        _e_box_smart_item_del_hook(void *data, Evas *e, Evas_Object 
*obj, void *event_info);
 static void        _e_box_smart_reconfigure(E_Smart_Data *sd);
-static void        _e_box_smart_extents_calcuate(E_Smart_Data *sd);
+static void        _e_box_smart_extents_calculate(E_Smart_Data *sd);
 
 static void _e_box_smart_init(void);
 static void _e_box_smart_add(Evas_Object *obj);
@@ -281,7 +281,7 @@
    
    sd = evas_object_smart_data_get(obj);
    if (!sd) return;
-   if (sd->changed) _e_box_smart_extents_calcuate(sd);
+   if (sd->changed) _e_box_smart_extents_calculate(sd);
    if (minw) *minw = sd->min.w;
    if (minh) *minh = sd->min.h;
 }
@@ -293,7 +293,7 @@
    
    sd = evas_object_smart_data_get(obj);
    if (!sd) return;
-   if (sd->changed) _e_box_smart_extents_calcuate(sd);
+   if (sd->changed) _e_box_smart_extents_calculate(sd);
    if (maxw) *maxw = sd->max.w;
    if (maxh) *maxh = sd->max.h;
 }
@@ -397,7 +397,7 @@
    w = sd->w;
    h = sd->h;
 
-   _e_box_smart_extents_calcuate(sd);
+   _e_box_smart_extents_calculate(sd);
    minw = sd->min.w;
    minh = sd->min.h;
    count = evas_list_count(sd->items);
@@ -555,7 +555,7 @@
 }
 
 static void
-_e_box_smart_extents_calcuate(E_Smart_Data *sd)
+_e_box_smart_extents_calculate(E_Smart_Data *sd)
 {
    Evas_List *l;
    int minw, minh;



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to