Fix typo in Evas headers

This commit is contained in:
Jihoon Kim 2013-05-29 10:27:10 +09:00
parent 52ad16014d
commit 4a90649f48
4 changed files with 21 additions and 21 deletions

View File

@ -832,7 +832,7 @@ typedef void (*Evas_Async_Events_Put_Cb)(void *target, Evas_Callback_Type t
/**
* Get the path for the cserve binary to execute
*
* There is little need for anyone except a desktop nevironment to call this.
* There is little need for anyone except a desktop environment to call this.
* This can be called before evas_init() has been called. It will try and find
* the full path to the to the cserve binary to run to provide cserve image
* and font caching services for evas.
@ -931,7 +931,7 @@ EAPI int evas_shutdown(void);
* recovered from by evas finding memory of its own it has allocated and
* freeing what it sees as not really usefully allocated memory. What is freed
* may vary. Evas may reduce the resolution of images, free cached images or
* fonts, trhow out pre-rendered data, reduce the complexity of change lists
* fonts, throw out pre-rendered data, reduce the complexity of change lists
* etc. Evas and the program will function as per normal after this, but this
* is a sign of low memory, and it is suggested that the program try and
* identify memory it doesn't need, and free it.
@ -1387,7 +1387,7 @@ EAPI void evas_device_pop(Evas *e);
* @since 1.8
*/
EAPI const Eina_List *evas_device_list(Evas *e, const Evas_Device *dev);
/**
* Set the name of a device as a string
*
@ -1397,7 +1397,7 @@ EAPI const Eina_List *evas_device_list(Evas *e, const Evas_Device *dev);
* @since 1.8
*/
EAPI void evas_device_name_set(Evas_Device *dev, const char *name);
/**
* Get the name of a device
*
@ -1413,7 +1413,7 @@ EAPI void evas_device_name_set(Evas_Device *dev, const char *name);
* @since 1.8
*/
EAPI const char *evas_device_name_get(const Evas_Device *dev);
/**
* Set the description of a device as a string
*
@ -1423,7 +1423,7 @@ EAPI const char *evas_device_name_get(const Evas_Device *dev);
* @since 1.8
*/
EAPI void evas_device_description_set(Evas_Device *dev, const char *desc);
/**
* Get the description of a device
*
@ -1441,7 +1441,7 @@ EAPI void evas_device_description_set(Evas_Device *dev, const char *desc);
* @since 1.8
*/
EAPI const char *evas_device_description_get(const Evas_Device *dev);
/**
* Set the parent of a device
*
@ -1463,7 +1463,7 @@ EAPI const char *evas_device_description_get(const Evas_Device *dev);
* @since 1.8
*/
EAPI void evas_device_parent_set(Evas_Device *dev, Evas_Device *parent);
/**
* Get the parent of a device
*
@ -1476,7 +1476,7 @@ EAPI void evas_device_parent_set(Evas_Device *dev, Evas_Device *parent);
* @since 1.8
*/
EAPI const Evas_Device *evas_device_parent_get(const Evas_Device *dev);
/**
* Set the major class of device
*
@ -1489,7 +1489,7 @@ EAPI const Evas_Device *evas_device_parent_get(const Evas_Device *dev);
* @since 1.8
*/
EAPI void evas_device_class_set(Evas_Device *dev, Evas_Device_Class clas);
/**
* Get the major class of a device
*
@ -1501,7 +1501,7 @@ EAPI void evas_device_class_set(Evas_Device *dev, Evas_Device_Class clas);
* @since 1.8
*/
EAPI Evas_Device_Class evas_device_class_get(const Evas_Device *dev);
/**
* Set the sub-class of a device
*
@ -1514,7 +1514,7 @@ EAPI Evas_Device_Class evas_device_class_get(const Evas_Device *dev);
* @since 1.8
*/
EAPI void evas_device_subclass_set(Evas_Device *dev, Evas_Device_Subclass clas);
/**
* Get the device sub-class
*

View File

@ -424,7 +424,7 @@ enum
* @def evas_canvas_coord_screen_x_to_world
* @since 1.8
*
* Convert/scale an ouput screen co-ordinate into canvas co-ordinates
* Convert/scale an output screen co-ordinate into canvas co-ordinates
*
* @param[in] x
* @param[out] ret
@ -437,7 +437,7 @@ enum
* @def evas_canvas_coord_screen_y_to_world
* @since 1.8
*
* Convert/scale an ouput screen co-ordinate into canvas co-ordinates
* Convert/scale an output screen co-ordinate into canvas co-ordinates
*
* @param[in] y
* @param[out] ret

View File

@ -215,7 +215,7 @@ EAPI void evas_obscured_clear(Evas *e) EINA_ARG_NONNULL(1);
*
* @return EINA_TRUE if the canvas will render, EINA_FALSE otherwise.
*
* This function only returns EINA_TRUE whne a frame will be rendered. If the
* This function only returns EINA_TRUE when a frame will be rendered. If the
* previous frame is still rendering, EINA_FALSE will be returned so the users
* know not to wait for the updates callback and just return to their main
* loop.
@ -514,7 +514,7 @@ EAPI void evas_output_framespace_get(const Evas *e, Evas_Coord *x,
*/
/**
* Convert/scale an ouput screen co-ordinate into canvas co-ordinates
* Convert/scale an output screen co-ordinate into canvas co-ordinates
*
* @param e The pointer to the Evas Canvas
* @param x The screen/output x co-ordinate
@ -538,7 +538,7 @@ EAPI void evas_output_framespace_get(const Evas *e, Evas_Coord *x,
EAPI Evas_Coord evas_coord_screen_x_to_world(const Evas *e, int x) EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
/**
* Convert/scale an ouput screen co-ordinate into canvas co-ordinates
* Convert/scale an output screen co-ordinate into canvas co-ordinates
*
* @param e The pointer to the Evas Canvas
* @param y The screen/output y co-ordinate
@ -954,7 +954,7 @@ EAPI void evas_post_event_callback_remove_full(Evas *e, Evas_Object_Event_Post_
* @param flags The default flags to use
*
* Events in evas can have an event_flags member. This starts out with
* and initial value (no flags). this lets you set the default flags that
* and initial value (no flags). This lets you set the default flags that
* an event begins with to be @p flags
*
* @since 1.2
@ -1066,7 +1066,7 @@ EAPI void evas_event_thaw_eval(Evas *e) EINA_ARG_NONNULL(1);
* Get the number of mouse or multi presses currently active
*
* @p e The given canvas pointer.
* @return The numer of presses (0 if none active).
* @return The number of presses (0 if none active).
*
* @since 1.2
*/

View File

@ -1114,8 +1114,8 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_OUTPUT_VIEWPORT_GET, "Get the render engine's output viewport co-ordinates in canvas units."),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_OUTPUT_FRAMESPACE_SET, "Sets the output framespace size of the render engine of the given evas."),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_OUTPUT_FRAMESPACE_GET, "Get the render engine's output framespace co-ordinates in canvas units."),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_COORD_SCREEN_X_TO_WORLD, "Convert/scale an ouput screen co-ordinate into canvas co-ordinates"),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_COORD_SCREEN_Y_TO_WORLD, "Convert/scale an ouput screen co-ordinate into canvas co-ordinates"),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_COORD_SCREEN_X_TO_WORLD, "Convert/scale an output screen co-ordinate into canvas co-ordinates"),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_COORD_SCREEN_Y_TO_WORLD, "Convert/scale an output screen co-ordinate into canvas co-ordinates"),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_COORD_WORLD_X_TO_SCREEN, "Convert/scale a canvas co-ordinate into output screen co-ordinates"),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_COORD_WORLD_Y_TO_SCREEN, "Convert/scale a canvas co-ordinate into output screen co-ordinates"),
EO_OP_DESCRIPTION(EVAS_CANVAS_SUB_ID_POINTER_OUTPUT_XY_GET, "This function returns the current known pointer co-ordinates"),