Fix typos in documentation #10.

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

SVN revision: 67913
This commit is contained in:
Sanjeev BA 2012-02-14 08:50:49 +00:00
parent 37a646a98e
commit 22518d5a24
6 changed files with 17 additions and 17 deletions

View File

@ -273,8 +273,8 @@ EAPI Elm_Object_Item *elm_segment_control_item_selected_get(const Evas_Object *o
* This sets the selected state of the given item @p it. * This sets the selected state of the given item @p it.
* @c EINA_TRUE for selected, @c EINA_FALSE for not selected. * @c EINA_TRUE for selected, @c EINA_FALSE for not selected.
* *
* If a new item is selected the previosly selected will be unselected. * If a new item is selected the previously selected will be unselected.
* Previoulsy selected item can be get with function * Previously selected item can be get with function
* elm_segment_control_item_selected_get(). * elm_segment_control_item_selected_get().
* *
* The selected item always will be highlighted on segment control. * The selected item always will be highlighted on segment control.

View File

@ -5,7 +5,7 @@
* @image html img/widget/slider/preview-00.png * @image html img/widget/slider/preview-00.png
* @image latex img/widget/slider/preview-00.eps width=\textwidth * @image latex img/widget/slider/preview-00.eps width=\textwidth
* *
* The slider adds a dragable slider widget for selecting the value of * The slider adds a draggable slider widget for selecting the value of
* something within a range. * something within a range.
* *
* A slider can be horizontal or vertical. It can contain an Icon and has a * A slider can be horizontal or vertical. It can contain an Icon and has a
@ -43,8 +43,8 @@
* @li "icon" - An icon of the slider * @li "icon" - An icon of the slider
* @li "end" - A end part content of the slider * @li "end" - A end part content of the slider
* *
* Default text parts of the silder widget that you can use for are: * Default text parts of the slider widget that you can use for are:
* @li "default" - Label of the silder * @li "default" - Label of the slider
* *
* Supported elm_object common APIs. * Supported elm_object common APIs.
* @li elm_object_disabled_set * @li elm_object_disabled_set

View File

@ -451,7 +451,7 @@ EAPI const char *elm_slideshow_layout_get(const Evas_Object *obj);
* *
* The available layouts for slideshows on the default theme are: * The available layouts for slideshows on the default theme are:
* - @c "fullscreen" - item images with original aspect, scaled to * - @c "fullscreen" - item images with original aspect, scaled to
* touch top and down slideshow borders or, if the image's heigh * touch top and down slideshow borders or, if the image's height
* is not enough, left and right slideshow borders. * is not enough, left and right slideshow borders.
* - @c "not_fullscreen" - the same behavior as the @c "fullscreen" * - @c "not_fullscreen" - the same behavior as the @c "fullscreen"
* one, but always leaving 10% of the slideshow's dimensions of * one, but always leaving 10% of the slideshow's dimensions of

View File

@ -258,7 +258,7 @@ EAPI Eina_Bool elm_spinner_wrap_get(const Evas_Object *obj);
* Spinner objects can have edition @b disabled, in which state they will * Spinner objects can have edition @b disabled, in which state they will
* be changed only by arrows. * be changed only by arrows.
* Useful for contexts * Useful for contexts
* where you don't want your users to interact with it writting the value. * where you don't want your users to interact with it writing the value.
* Specially * Specially
* when using special values, the user can see real value instead * when using special values, the user can see real value instead
* of special label on edition. * of special label on edition.

View File

@ -8,7 +8,7 @@
* For a Table widget the row/column count is not fixed. * For a Table widget the row/column count is not fixed.
* The table widget adjusts itself when subobjects are added to it dynamically. * The table widget adjusts itself when subobjects are added to it dynamically.
* *
* The followin are examples of how to use a table: * The following are examples of how to use a table:
* @li @ref tutorial_table_01 * @li @ref tutorial_table_01
* @li @ref tutorial_table_02 * @li @ref tutorial_table_02
* *

View File

@ -22,7 +22,7 @@
* by setting the @c ELM_THEME environment variable before running an * by setting the @c ELM_THEME environment variable before running an
* application, or globally for all programs using the @c elementary_config * application, or globally for all programs using the @c elementary_config
* utility. Applications can change the default theme using elm_theme_set(), * utility. Applications can change the default theme using elm_theme_set(),
* but this can go against the user wishes, so it's not an adviced practice. * but this can go against the user wishes, so it's not an advised practice.
* *
* Ideally, applications should find everything they need in the already * Ideally, applications should find everything they need in the already
* provided theme, but there may be occasions when that's not enough and * provided theme, but there may be occasions when that's not enough and
@ -49,7 +49,7 @@
* theme for the application and will probably clash with the end user * theme for the application and will probably clash with the end user
* options, not to mention the risk of ending up with not matching styles * options, not to mention the risk of ending up with not matching styles
* across the program. Unless there's a very special reason to use them, * across the program. Unless there's a very special reason to use them,
* overlays should be avoided for the resons exposed before. * overlays should be avoided for the reasons exposed before.
* *
* All these theme lists are handled by ::Elm_Theme instances. Elementary * All these theme lists are handled by ::Elm_Theme instances. Elementary
* keeps one default internally and every function that receives one of * keeps one default internally and every function that receives one of
@ -104,7 +104,7 @@ EAPI Elm_Theme *elm_theme_new(void);
EAPI void elm_theme_free(Elm_Theme *th); EAPI void elm_theme_free(Elm_Theme *th);
/** /**
* Copy the theme fom the source to the destination theme * Copy the theme from the source to the destination theme
* *
* @param th The source theme to copy from * @param th The source theme to copy from
* @param thdst The destination theme to copy data to * @param thdst The destination theme to copy data to
@ -161,7 +161,7 @@ EAPI Elm_Theme *elm_theme_default_get(void);
* new styles, or changing system theme configuration is not possible. Do * new styles, or changing system theme configuration is not possible. Do
* NOT use this instead of a proper system theme configuration. Use proper * NOT use this instead of a proper system theme configuration. Use proper
* configuration files, profiles, environment variables etc. to set a theme * configuration files, profiles, environment variables etc. to set a theme
* so that the theme can be altered by simple confiugration by a user. Using * so that the theme can be altered by simple configuration by a user. Using
* this call to achieve that effect is abusing the API and will create lots * this call to achieve that effect is abusing the API and will create lots
* of trouble. * of trouble.
* *
@ -256,7 +256,7 @@ EAPI const char *elm_theme_get(Elm_Theme *th);
* *
* A theme element can consist of a full or relative path to a .edj file, * A theme element can consist of a full or relative path to a .edj file,
* or a name, without extension, for a theme to be searched in the known * or a name, without extension, for a theme to be searched in the known
* theme paths for Elemementary. * theme paths for Elementary.
* *
* @see elm_theme_set() * @see elm_theme_set()
* @see elm_theme_get() * @see elm_theme_get()
@ -264,7 +264,7 @@ EAPI const char *elm_theme_get(Elm_Theme *th);
EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th); EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
/** /**
* Return the full patrh for a theme element * Return the full path for a theme element
* *
* @param f The theme element name * @param f The theme element name
* @param in_search_path Pointer to a boolean to indicate if item is in the search path or not * @param in_search_path Pointer to a boolean to indicate if item is in the search path or not
@ -272,11 +272,11 @@ EAPI const Eina_List *elm_theme_list_get(const Elm_Theme *th);
* *
* This returns a string you should free with free() on success, NULL on * This returns a string you should free with free() on success, NULL on
* failure. This will search for the given theme element, and if it is a * failure. This will search for the given theme element, and if it is a
* full or relative path element or a simple searchable name. The returned * full or relative path element or a simple search-able name. The returned
* path is the full path to the file, if searched, and the file exists, or it * path is the full path to the file, if searched, and the file exists, or it
* is simply the full path given in the element or a resolved path if * is simply the full path given in the element or a resolved path if
* relative to home. The @p in_search_path boolean pointed to is set to * relative to home. The @p in_search_path boolean pointed to is set to
* EINA_TRUE if the file was a searchable file andis in the search path, * EINA_TRUE if the file was a search-able file and is in the search path,
* and EINA_FALSE otherwise. * and EINA_FALSE otherwise.
*/ */
EAPI char *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path); EAPI char *elm_theme_list_item_path_get(const char *f, Eina_Bool *in_search_path);
@ -351,7 +351,7 @@ EAPI void elm_object_theme_set(Evas_Object *obj, Elm_Theme *th);
* Get the specific theme to be used * Get the specific theme to be used
* *
* @param obj The object to get the specific theme from * @param obj The object to get the specific theme from
* @return The specifc theme set. * @return The specific theme set.
* *
* This will return a specific theme set, or NULL if no specific theme is * This will return a specific theme set, or NULL if no specific theme is
* set on that object. It will not return inherited themes from parents, only * set on that object. It will not return inherited themes from parents, only