doxygen docs: Fix warnings in textblock

This commit is contained in:
Xavi Artigas 2020-03-23 12:14:07 +01:00
parent 21e78743a4
commit a1c7384da9
2 changed files with 11 additions and 15 deletions

View File

@ -2630,9 +2630,9 @@ _format_command(Evas_Object *eo_obj, Evas_Object_Textblock_Format *fmt, const ch
* @li "right" - Puts the text at the right of the line
* @li "start" - Respects LTR/RTL settings. It is same with "auto"
* @li "end" - Puts the text at the opposite side of LTR/RTL settings
* @li <number> - A number between 0.0 and 1.0 where 0.0 represents
* @li \<number\> - A number between 0.0 and 1.0 where 0.0 represents
* "left" and 1.0 represents "right"
* @li <number>% - A percentage between 0% and 100% where 0%
* @li \<number\>% - A percentage between 0% and 100% where 0%
* represents "left" and 100% represents "right"
* @code
* align=<value or preset>
@ -2707,9 +2707,9 @@ _format_command(Evas_Object *eo_obj, Evas_Object_Textblock_Format *fmt, const ch
* @li "bottom" - Puts the text at the bottom of the line
* @li "baseline" - Baseline
* @li "base" - Alias for "baseline"
* @li <number> - A number between 0.0 and 1.0 where 0.0 represents
* @li \<number\> - A number between 0.0 and 1.0 where 0.0 represents
* "top" and 1.0 represents "bottom"
* @li <number>% - A percentage between 0% and 100% where 0%
* @li \<number\>% - A percentage between 0% and 100% where 0%
* represents "top" and 100% represents "bottom"
* @code
* valign=<value or preset>
@ -2832,9 +2832,9 @@ _format_command(Evas_Object *eo_obj, Evas_Object_Textblock_Format *fmt, const ch
*
* Sets the left margin of the text. The value can be a number, an
* increment, decrement or "reset":
* @li +<number> - Increments existing left margin by <number>
* @li -<number> - Decrements existing left margin by <number>
* @li <number> - Sets left margin to <number>
* @li +\<number\> - Increments existing left margin by \<number\>
* @li -\<number\> - Decrements existing left margin by \<number\>
* @li \<number\> - Sets left margin to \<number\>
* @li "reset" - Sets left margin to 0
* @code
* left_margin=<value or reset>
@ -2862,9 +2862,9 @@ _format_command(Evas_Object *eo_obj, Evas_Object_Textblock_Format *fmt, const ch
*
* Sets the right margin of the text. The value can be a number, an
* increment, decrement or "reset":
* @li +<number> - Increments existing right margin by <number>
* @li -<number> - Decrements existing right margin by <number>
* @li <number> - Sets left margin to <number>
* @li +\<number\> - Increments existing right margin by \<number\>
* @li -\<number\> - Decrements existing right margin by \<number\>
* @li \<number\> - Sets left margin to \<number\>
* @li "reset" - Sets left margin to 0
* @code
* right_margin=<value or reset>

View File

@ -562,7 +562,7 @@ EAPI Eina_List *evas_textblock_cursor_range_geomet
/**
* Get the simple geometry of a range.
* The simple geometry is the geomtry in which rectangles in middle
* The simple geometry is the geometry in which rectangles in middle
* lines of range are merged into one big rectangle.
* @since 1.13
*
@ -573,10 +573,6 @@ EAPI Eina_List *evas_textblock_cursor_range_geomet
EAPI Eina_Iterator *evas_textblock_cursor_range_simple_geometry_get(const Evas_Textblock_Cursor *cur1, const Evas_Textblock_Cursor *cur2) EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1, 2);
/**
* Get the geometry of ?
*
* @param cur one side of the range.
* @param cur2 other side of the range.
*/
EAPI Eina_Bool evas_textblock_cursor_format_item_geometry_get(const Evas_Textblock_Cursor *cur, Evas_Coord *cx, Evas_Coord *cy, Evas_Coord *cw, Evas_Coord *ch) EINA_ARG_NONNULL(1);