Elementary entry: Updated docs of elm_entry_markup_* functions.
authorTom Hacohen <tom@stosb.com>
Mon, 14 Mar 2011 09:54:40 +0000 (09:54 +0000)
committerTom Hacohen <tom@stosb.com>
Mon, 14 Mar 2011 09:54:40 +0000 (09:54 +0000)
Patch by Hyoyoung Chang.

SVN revision: 57735

src/lib/elm_entry.c

index 4d6d981f96e2269cffb97a260db2340b09a24328..5e8aa2ab4c6e5ac05bb5c0f049a3117c718037e9 100644 (file)
@@ -2581,9 +2581,11 @@ elm_entry_text_filter_remove(Evas_Object *obj, void (*func) (void *data, Evas_Ob
 
 /**
  * This converts a markup (HTML-like) string into UTF-8.
+ * Returning string is obtained with malloc.
+ * After use the returned string, it should be freed.
  *
  * @param s The string (in markup) to be converted
- * @return The converted string (in UTF-8)
+ * @return The converted string (in UTF-8). It should be freed.
  *
  * @ingroup Entry
  */
@@ -2597,9 +2599,11 @@ elm_entry_markup_to_utf8(const char *s)
 
 /**
  * This converts a UTF-8 string into markup (HTML-like).
+ * Returning string is obtained with malloc.
+ * After use the returned string, it should be freed.
  *
  * @param s The string (in UTF-8) to be converted
- * @return The converted string (in markup)
+ * @return The converted string (in markup). It should be freed.
  *
  * @ingroup Entry
  */