seoz pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=1d62be26c7198a0bcada981840a59d9d956ae70e

commit 1d62be26c7198a0bcada981840a59d9d956ae70e
Author: Daniel Juyung Seo <[email protected]>
Date:   Mon Dec 15 20:58:17 2014 +0900

    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.
---
 src/lib/elm_entry.eo | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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 {

-- 


Reply via email to