herdsman pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2efa25511f04dc2cb278471aa041e0e24ffa13f0

commit 2efa25511f04dc2cb278471aa041e0e24ffa13f0
Author: Daniel Hirt <[email protected]>
Date:   Fri Jul 28 12:33:55 2017 +0300

    Elm entry: fix call to set text via entry_set
    
    Accidentally called the super here, so did not get routed to
    '_elm_entry_text_set'.
    
    Fixes T5803.
---
 src/lib/elementary/elm_entry.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/elm_entry.c b/src/lib/elementary/elm_entry.c
index 8c8b2b82c5..446d781d30 100644
--- a/src/lib/elementary/elm_entry.c
+++ b/src/lib/elementary/elm_entry.c
@@ -4177,7 +4177,7 @@ elm_entry_entry_set(Evas_Object *obj,
                     const char *entry)
 {
    ELM_ENTRY_CHECK(obj);
-   efl_text_set(efl_part(efl_super(obj, MY_CLASS), "elm.text"), entry);
+   efl_text_set(efl_part(obj, "elm.text"), entry);
 }
 
 EAPI const char *

-- 


Reply via email to