From: Ingvaldur Sigurjonsson <rocketiii.scientist@gmail.com>

Subject: [E-devel] [PATCH]Evas.h comments patch

When reading the comments of 'evas_object_textgrid_update_add' I
noticed 
a little cnp err. The enclosed patch is just a suggestion, but the 
misleading comment was driving me nuts...



SVN revision: 74331
This commit is contained in:
Ingvaldur Sigurjonsson 2012-07-24 01:31:50 +00:00 committed by Carsten Haitzler
parent 1e42e445c5
commit 5410726016
2 changed files with 7 additions and 3 deletions

View File

@ -904,3 +904,7 @@
2012-07-22 Cedric Bail 2012-07-22 Cedric Bail
* Don't crash when calling evas_object_smart_type_check without type. * Don't crash when calling evas_object_smart_type_check without type.
2012-07-24 Ingvaldur Sigurjonsson
* Fix typoe in docs

View File

@ -9462,15 +9462,15 @@ EAPI void evas_object_textgrid_cellrow_set(Evas_Object *obj, int y, const Evas_T
EAPI Evas_Textgrid_Cell *evas_object_textgrid_cellrow_get(const Evas_Object *obj, int y); EAPI Evas_Textgrid_Cell *evas_object_textgrid_cellrow_get(const Evas_Object *obj, int y);
/** /**
* @brief Get the string at the given row of the given textgrid object. * @brief Indicate for evas that part of a textgrid region (cells) has been updated.
* *
* @param obj The textgrid object to query for font information. * @param obj The textgrid object.
* @param x The rect region of cells top-left x (column) * @param x The rect region of cells top-left x (column)
* @param y The rect region of cells top-left y (row) * @param y The rect region of cells top-left y (row)
* @param w The rect region size in number of cells (columns) * @param w The rect region size in number of cells (columns)
* @param h The rect region size in number of cells (rows) * @param h The rect region size in number of cells (rows)
* *
* This function delcares to evas that a region of cells was updated by * This function declares to evas that a region of cells was updated by
* code and needs refreshing. An application should modify cells like this * code and needs refreshing. An application should modify cells like this
* as an example: * as an example:
* *