From a2a9f26a4c93af94ef566c455d9ab63597dfec7d Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Fri, 25 Oct 2013 14:05:09 +0900 Subject: [PATCH] elm_entry_common.h: added more description to elm_entry_utf8_to_markup api. --- legacy/elementary/src/lib/elm_entry_common.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/legacy/elementary/src/lib/elm_entry_common.h b/legacy/elementary/src/lib/elm_entry_common.h index 1f79b31c27..3c49e8b418 100644 --- a/legacy/elementary/src/lib/elm_entry_common.h +++ b/legacy/elementary/src/lib/elm_entry_common.h @@ -240,6 +240,11 @@ EAPI char *elm_entry_markup_to_utf8(const char *s); * @param s The string (in UTF-8) to be converted * @return The converted string (in markup). It should be freed. * + * For example, passing "hello>" will return + * "<align=center>hello</align> &gt;". This is useful when you + * want to display "&" in label, entry, and some widgets which use textblock + * internally. + * * @ingroup Entry */ EAPI char *elm_entry_utf8_to_markup(const char *s);