summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2014-03-27 12:25:44 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2014-03-27 12:30:19 +0100
commit23b0d4f14dcf0249115a6ffee1368fdd44377a8a (patch)
tree7267faff808dc9ae1e30ec1e77a157d36bd38b3f
parenteb65cac12d55ae5fe843c7cd055e08882929aca3 (diff)
downloadefl-23b0d4f14dcf0249115a6ffee1368fdd44377a8a.tar.gz
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.
-rw-r--r--src/lib/evas/Evas_Legacy.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index 3d1aa3ec22..15085442b3 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -5614,8 +5614,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;