stefan pushed a commit to branch efl-1.9. http://git.enlightenment.org/core/efl.git/commit/?id=e59c14eda99800469be6243dbf9a5eb383056ec2
commit e59c14eda99800469be6243dbf9a5eb383056ec2 Author: Stefan Schmidt <[email protected]> Date: Thu Mar 27 12:25:44 2014 +0100 evas/textblock: Correct evas_textblock_text_utf8_to_markup docs Input and output was documented in the wrong direction.This function takes plain text and gives markup. --- src/lib/evas/Evas_Legacy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h index 19dcf2a..986c345 100644 --- a/src/lib/evas/Evas_Legacy.h +++ b/src/lib/evas/Evas_Legacy.h @@ -5610,8 +5610,8 @@ EAPI char *evas_textblock_text_markup_to_utf8 * * @param obj the textblock object to work with (if @c NULL, it just does the * default behaviour, i.e with no extra object information). - * @param text The markup text (if @c NULL, return @c NULL). - * @return An allocated plain text version of the markup. + * @param text The plain text (if @c NULL, return @c NULL). + * @return An allocated markup version of the plain text. * @since 1.2 */ EAPI char *evas_textblock_text_utf8_to_markup(const Evas_Object *obj, const char *text) EINA_WARN_UNUSED_RESULT EINA_MALLOC; --
