From 5410726016478b3a90035ca4c04108ff9e1e3bbd Mon Sep 17 00:00:00 2001 From: Ingvaldur Sigurjonsson Date: Tue, 24 Jul 2012 01:31:50 +0000 Subject: [PATCH] From: Ingvaldur Sigurjonsson 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 --- legacy/evas/ChangeLog | 4 ++++ legacy/evas/src/lib/Evas.h | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/legacy/evas/ChangeLog b/legacy/evas/ChangeLog index e78053ff87..ac59b5116f 100644 --- a/legacy/evas/ChangeLog +++ b/legacy/evas/ChangeLog @@ -904,3 +904,7 @@ 2012-07-22 Cedric Bail * Don't crash when calling evas_object_smart_type_check without type. + +2012-07-24 Ingvaldur Sigurjonsson + + * Fix typoe in docs diff --git a/legacy/evas/src/lib/Evas.h b/legacy/evas/src/lib/Evas.h index 4dda353dfa..4a95bcbf1a 100644 --- a/legacy/evas/src/lib/Evas.h +++ b/legacy/evas/src/lib/Evas.h @@ -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); /** - * @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 y The rect region of cells top-left y (row) * @param w The rect region size in number of cells (columns) * @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 * as an example: *