Fix typos in documentation #1

Signed-off-by: Sanjeev BA <iamsanjeev@gmail.com>

SVN revision: 67904
This commit is contained in:
Sanjeev BA 2012-02-14 08:50:20 +00:00
parent 5e75ec1181
commit 0574ae15da
4 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@
* @image html img/widget/ctxpopup/preview-00.png * @image html img/widget/ctxpopup/preview-00.png
* @image latex img/widget/ctxpopup/preview-00.eps * @image latex img/widget/ctxpopup/preview-00.eps
* *
* @brief Context popup widet. * @brief Context popup widget.
* *
* A ctxpopup is a widget that, when shown, pops up a list of items. * A ctxpopup is a widget that, when shown, pops up a list of items.
* It automatically chooses an area inside its parent object's view * It automatically chooses an area inside its parent object's view
@ -14,7 +14,7 @@
* items have a label and/or an icon. It is intended for a small * items have a label and/or an icon. It is intended for a small
* number of items (hence the use of list, not genlist). * number of items (hence the use of list, not genlist).
* *
* @note Ctxpopup is a especialization of @ref Hover. * @note Ctxpopup is a specialization of @ref Hover.
* *
* Signals that you can add callbacks for are: * Signals that you can add callbacks for are:
* "dismissed" - the ctxpopup was dismissed * "dismissed" - the ctxpopup was dismissed

View File

@ -16,7 +16,7 @@
* *
* This widget encapsulates operations on its internal file * This widget encapsulates operations on its internal file
* selector on its own API. There is less control over its file * selector on its own API. There is less control over its file
* selector than that one would have instatiating one directly. * selector than that one would have instantiating one directly.
* *
* The following styles are available for this button: * The following styles are available for this button:
* @li @c "default" * @li @c "default"

View File

@ -18,7 +18,7 @@
* *
* This widget encapsulates operations on its internal file * This widget encapsulates operations on its internal file
* selector on its own API. There is less control over its file * selector on its own API. There is less control over its file
* selector than that one would have instatiating one directly. * selector than that one would have instantiating one directly.
* *
* Smart callbacks one can register to: * Smart callbacks one can register to:
* - @c "changed" - The text within the entry was changed * - @c "changed" - The text within the entry was changed

View File

@ -111,7 +111,7 @@ EAPI void elm_multibuttonentry_shrink_mode_set(Evas_Object
* *
* @param obj The multibuttonentry object * @param obj The multibuttonentry object
* @param label The label of new item * @param label The label of new item
* @param data The ponter to the data to be attached * @param data The pointer to the data to be attached
* @return A handle to the item added or NULL if not possible * @return A handle to the item added or NULL if not possible
* *
* @ingroup Multibuttonentry * @ingroup Multibuttonentry
@ -123,7 +123,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const
* *
* @param obj The multibuttonentry object * @param obj The multibuttonentry object
* @param label The label of new item * @param label The label of new item
* @param data The ponter to the data to be attached * @param data The pointer to the data to be attached
* @return A handle to the item added or NULL if not possible * @return A handle to the item added or NULL if not possible
* *
* @ingroup Multibuttonentry * @ingroup Multibuttonentry
@ -137,7 +137,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const c
* @param obj The multibuttonentry object * @param obj The multibuttonentry object
* @param before The item before which to add it * @param before The item before which to add it
* @param label The label of new item * @param label The label of new item
* @param data The ponter to the data to be attached * @param data The pointer to the data to be attached
* @return A handle to the item added or NULL if not possible * @return A handle to the item added or NULL if not possible
* *
* @ingroup Multibuttonentry * @ingroup Multibuttonentry
@ -150,7 +150,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj,
* @param obj The multibuttonentry object * @param obj The multibuttonentry object
* @param after The item after which to add it * @param after The item after which to add it
* @param label The label of new item * @param label The label of new item
* @param data The ponter to the data to be attached * @param data The pointer to the data to be attached
* @return A handle to the item added or NULL if not possible * @return A handle to the item added or NULL if not possible
* *
* @ingroup Multibuttonentry * @ingroup Multibuttonentry
@ -256,7 +256,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_next_get(const Elm_Object_Item *
* parameter to NULL. This will also prevent any following filters from being * parameter to NULL. This will also prevent any following filters from being
* called. * called.
* *
* @param obj The multibuttonentryentry object * @param obj The multibuttonentry object
* @param func The function to use as item filter * @param func The function to use as item filter
* @param data User data to pass to @p func * @param data User data to pass to @p func
* *
@ -265,7 +265,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_next_get(const Elm_Object_Item *
EAPI void elm_multibuttonentry_item_filter_append(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data); EAPI void elm_multibuttonentry_item_filter_append(Evas_Object *obj, Elm_Multibuttonentry_Item_Filter_callback func, void *data);
/** /**
* Prepend a filter function for text inserted in the Multibuttentry * Prepend a filter function for text inserted in the Multibuttonentry
* *
* Prepend the given callback to the list. See elm_multibuttonentry_item_filter_append() * Prepend the given callback to the list. See elm_multibuttonentry_item_filter_append()
* for more information * for more information