From: seoz Date: Thu, 24 May 2012 06:48:21 +0000 (+0000) Subject: evas Evas.h: Fixed typo. X-Git-Tag: submit/trunk/20120815.174732~304 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=360e62e26b9a469453e63d06ec047598e46d3a9a;p=profile%2Fivi%2Fevas.git evas Evas.h: Fixed typo. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@71395 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/Evas.h b/src/lib/Evas.h index 407376a..698f8e7 100644 --- a/src/lib/Evas.h +++ b/src/lib/Evas.h @@ -9328,7 +9328,7 @@ struct _Evas_Smart_Class const char *name; /**< the name string of the class */ int version; void (*add) (Evas_Object *o); /**< code to be run when adding object to a canvas */ - void (*del) (Evas_Object *o); /**< code to be run when removing object to a canvas */ + void (*del) (Evas_Object *o); /**< code to be run when removing object from a canvas */ void (*move) (Evas_Object *o, Evas_Coord x, Evas_Coord y); /**< code to be run when moving object on a canvas. @a x and @a y will be new coordinates one applied to the object. use evas_object_geometry_get() if you need the old values, during this call. after that, the old values will be lost. */ void (*resize) (Evas_Object *o, Evas_Coord w, Evas_Coord h); /**< code to be run when resizing object on a canvas. @a w and @a h will be new dimensions one applied to the object. use evas_object_geometry_get() if you need the old values, during this call. after that, the old values will be lost. */ void (*show) (Evas_Object *o); /**< code to be run when showing object on a canvas */ @@ -10398,14 +10398,14 @@ EAPI Evas_Object *evas_object_smart_clipped_clipper_get (Evas_Objec * clipped smart object are: * - @c add: creates a hidden clipper with "infinite" size, to clip * any incoming members; - * - @c del: delete all children objects; - * - @c move: move all objects relative relatively; - * - @c resize: not defined; - * - @c show: if there are children objects, show clipper; - * - @c hide: hides clipper; - * - @c color_set: set the color of clipper; - * - @c clip_set: set clipper of clipper; - * - @c clip_unset: unset the clipper of clipper; + * - @c del: delete all children objects; + * - @c move: move all objects relative relatively; + * - @c resize: not defined; + * - @c show: if there are children objects, show clipper; + * - @c hide: hides clipper; + * - @c color_set: set the color of clipper; + * - @c clip_set: set clipper of clipper; + * - @c clip_unset: unset the clipper of clipper; * * @note There are other means of assigning parent smart classes to * child ones, like the #EVAS_SMART_SUBCLASS_NEW macro or the