From c1999f1c44b4b204874e59db5358383dcfe60207 Mon Sep 17 00:00:00 2001 From: Sanjeev BA Date: Mon, 20 Feb 2012 04:18:50 +0000 Subject: [PATCH] Fix typos. Signed-off-by: Sanjeev BA SVN revision: 68138 --- legacy/elementary/src/lib/elc_naviframe.h | 2 +- legacy/elementary/src/lib/elm_deprecated.h | 12 ++++++------ legacy/elementary/src/lib/elm_flip.h | 2 +- legacy/elementary/src/lib/elm_label.h | 4 ++-- legacy/elementary/src/lib/elm_panes.h | 8 ++++---- legacy/elementary/src/lib/elm_slideshow.h | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/legacy/elementary/src/lib/elc_naviframe.h b/legacy/elementary/src/lib/elc_naviframe.h index 6d9cbd6e49..d51f9e477e 100644 --- a/legacy/elementary/src/lib/elc_naviframe.h +++ b/legacy/elementary/src/lib/elc_naviframe.h @@ -18,7 +18,7 @@ * Default content parts of the naviframe that you can use content hooks for * are: * @li "default" - The main content of the current page - * @li "icon" - An icon in the title area of the current parge + * @li "icon" - An icon in the title area of the current page * @li "prev_btn" - A button of the current page to go to the previous page * @li "next_btn" - A button of the current page to go to the next page * diff --git a/legacy/elementary/src/lib/elm_deprecated.h b/legacy/elementary/src/lib/elm_deprecated.h index de8d8c221c..54a6e79712 100644 --- a/legacy/elementary/src/lib/elm_deprecated.h +++ b/legacy/elementary/src/lib/elm_deprecated.h @@ -4245,7 +4245,7 @@ EINA_DEPRECATED EAPI void elm_entry_text_filter_remove(Evas_Object * If you want to keep that old content object, use the * elm_flip_content_front_unset() function. * - * @deprecated Use elm_objecet_part_content_set(flip, "front") instead + * @deprecated Use elm_object_part_content_set(flip, "front") instead */ EINA_DEPRECATED EAPI void elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content); @@ -4259,7 +4259,7 @@ EINA_DEPRECATED EAPI void elm_flip_content_front_set(Evas_Object * If you want to keep that old content object, use the * elm_flip_content_back_unset() function. * - * @deprecated Use elm_objecet_part_content_set(flip, "back") instead + * @deprecated Use elm_object_part_content_set(flip, "back") instead */ EINA_DEPRECATED EAPI void elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content); @@ -4271,7 +4271,7 @@ EINA_DEPRECATED EAPI void elm_flip_content_back_set(Evas_Object * * Return the front content object which is set for this widget. * - * @deprecated Use elm_objecet_part_content_get(flip, "front") instead + * @deprecated Use elm_object_part_content_get(flip, "front") instead */ EINA_DEPRECATED EAPI Evas_Object *elm_flip_content_front_get(const Evas_Object *obj); @@ -4283,7 +4283,7 @@ EINA_DEPRECATED EAPI Evas_Object *elm_flip_content_front_get(const Evas_ * * Return the back content object which is set for this widget. * - * @deprecated Use elm_objecet_part_content_get(flip, "back") instead + * @deprecated Use elm_object_part_content_get(flip, "back") instead */ EINA_DEPRECATED EAPI Evas_Object *elm_flip_content_back_get(const Evas_Object *obj); @@ -4295,7 +4295,7 @@ EINA_DEPRECATED EAPI Evas_Object *elm_flip_content_back_get(const Evas_O * * Unparent and return the front content object which was set for this widget. * - * @deprecated Use elm_objecet_part_content_unset(flip, "front") instead + * @deprecated Use elm_object_part_content_unset(flip, "front") instead */ EINA_DEPRECATED EAPI Evas_Object *elm_flip_content_front_unset(Evas_Object *obj); @@ -4307,7 +4307,7 @@ EINA_DEPRECATED EAPI Evas_Object *elm_flip_content_front_unset(Evas_Obje * * Unparent and return the back content object which was set for this widget. * - * @deprecated Use elm_objecet_part_content_unset(flip, "back") instead + * @deprecated Use elm_object_part_content_unset(flip, "back") instead */ EINA_DEPRECATED EAPI Evas_Object *elm_flip_content_back_unset(Evas_Object *obj); diff --git a/legacy/elementary/src/lib/elm_flip.h b/legacy/elementary/src/lib/elm_flip.h index b067897166..56a5cae48c 100644 --- a/legacy/elementary/src/lib/elm_flip.h +++ b/legacy/elementary/src/lib/elm_flip.h @@ -18,7 +18,7 @@ * "animate,begin" - when a flip animation was started * "animate,done" - when a flip animation is finished * - * Default contents parts of the filp widget that you can use for are: + * Default contents parts of the flip widget that you can use for are: * @li "front" - A front content of the flip * @li "back" - A back content of the flip * diff --git a/legacy/elementary/src/lib/elm_label.h b/legacy/elementary/src/lib/elm_label.h index c71dd7098e..011db86669 100644 --- a/legacy/elementary/src/lib/elm_label.h +++ b/legacy/elementary/src/lib/elm_label.h @@ -95,7 +95,7 @@ EAPI Evas_Coord elm_label_wrap_width_get(const Evas_Object *obj * * @warning This is only relevant if the label is inside a container. */ -//XXX: Maybe added for supporting multi-line ellpisis. Evas textlock supports multi-line ellipsis by itself, no more needs for this API. +//XXX: Maybe added for supporting multi-line ellipsis. Evas textblock supports multi-line ellipsis by itself, no more needs for this API. EAPI void elm_label_wrap_height_set(Evas_Object *obj, Evas_Coord h); /** @@ -104,7 +104,7 @@ EAPI void elm_label_wrap_height_set(Evas_Object *obj, Eva * @param obj The label object * @return The wrap height in pixels at a minimum where words need to wrap */ -//XXX: Maybe added for supporting multi-line ellpisis. Evas textlock supports multi-line ellipsis by itself, no more needs for this API. +//XXX: Maybe added for supporting multi-line ellipsis. Evas textblock supports multi-line ellipsis by itself, no more needs for this API. EAPI Evas_Coord elm_label_wrap_height_get(const Evas_Object *obj); /** diff --git a/legacy/elementary/src/lib/elm_panes.h b/legacy/elementary/src/lib/elm_panes.h index 57bedd52f7..5b68f7ce1e 100644 --- a/legacy/elementary/src/lib/elm_panes.h +++ b/legacy/elementary/src/lib/elm_panes.h @@ -127,17 +127,17 @@ EAPI Evas_Object * elm_panes_content_right_get(const Evas_Object *obj); EAPI Evas_Object * elm_panes_content_right_unset(Evas_Object *obj); /** - * Set whether the left and right panes resize homogenously or not. + * Set whether the left and right panes resize homogeneously or not. * * @param obj The panes object. * @param fixed Use @c EINA_TRUE to make @p obj to be - * resize the left and right panes @b homogenously. + * resize the left and right panes @b homogeneously. * Use @c EINA_FALSE to make use of the values specified in * elm_panes_content_left_size_set() and * elm_panes_content_right_size_set() * to resize the left and right panes. * - * By default panes are resized homogenously. + * By default panes are resized homogeneously. * * @see elm_panes_fixed_get() * @see elmpanes_content_left_size_set() @@ -151,7 +151,7 @@ EAPI void elm_panes_fixed_set(Evas_Object *obj, Eina_Boo * Retrieve the resize mode for the panes of a given panes widget. * * @param obj The panes object. - * @return @c EINA_TRUE, if @p obj is set to be resized @b homogenously, + * @return @c EINA_TRUE, if @p obj is set to be resized @b homogeneously, * * @see elm_panes_fixed_set() for more details. * @see elmpanes_content_left_size_get() diff --git a/legacy/elementary/src/lib/elm_slideshow.h b/legacy/elementary/src/lib/elm_slideshow.h index fea5678605..be78950b0e 100644 --- a/legacy/elementary/src/lib/elm_slideshow.h +++ b/legacy/elementary/src/lib/elm_slideshow.h @@ -216,7 +216,7 @@ EAPI void elm_slideshow_previous(Evas_Object *obj); * exclusive to the user grabbing the list, here, so if you'd like * to use them out of this call's context, you'd better @c * eina_stringshare_ref() them. Also the list is an internal list and - * so is only valid for as long as the slidehsow object is valid and + * so is only valid for as long as the slideshow object is valid and * has not internally changed its list for some reason, so make a * copy if you need it around. *