From: Daniel Juyung Seo Date: Mon, 15 Dec 2014 11:58:17 +0000 (+0900) Subject: entry: Make documentation less confusing. X-Git-Tag: v1.13.0-alpha1~173 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1d62be26c7198a0bcada981840a59d9d956ae70e;p=platform%2Fupstream%2Felementary.git entry: Make documentation less confusing. Entry can be used in different meanings. Use 'str' instead of 'entry' to explicitly show the exact meaning of a parameter. --- diff --git a/src/lib/elm_entry.eo b/src/lib/elm_entry.eo index 1f7c145..7d2f07a 100644 --- a/src/lib/elm_entry.eo +++ b/src/lib/elm_entry.eo @@ -1118,9 +1118,9 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, } entry_append { /*@ - Appends @p entry to the text of the entry. + Appends @p str to the text of the entry. - Adds the text in @p entry to the end of any text already present in the + Adds the text in @p str to the end of any text already present in the widget. The appended text is subject to any filters set for the widget. @@ -1130,7 +1130,7 @@ class Elm_Entry (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interface, @ingroup Entry */ params { - @in const(char)* entry; /*@ The text to be displayed */ + @in const(char)* str; /*@ The text to be appended */ } } context_menu_item_add {