devilhorns pushed a commit to branch master.

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

commit c1df3a99cf629a85e7498ea075309488dae7f848
Author: Shuhrat Dehkanov <[email protected]>
Date:   Fri Oct 21 08:57:15 2016 -0400

    elm test: correct elm_entry_autocapital_type_set() argument
    
    Summary: EINA_TRUE translates into ELM_AUTOCAPITAL_TYPE_WORD, so use the 
latter to be consistent with the API.
    
    Reviewers: jpeg, minkyu, devilhorns
    
    Subscribers: stefan_schmidt, devilhorns, cedric
    
    Differential Revision: https://phab.enlightenment.org/D4354
---
 src/bin/elementary/test_entry.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/elementary/test_entry.c b/src/bin/elementary/test_entry.c
index 35180df..edcdd44 100644
--- a/src/bin/elementary/test_entry.c
+++ b/src/bin/elementary/test_entry.c
@@ -2548,7 +2548,7 @@ test_entry8(void *data EINA_UNUSED, Evas_Object *obj 
EINA_UNUSED, void *event_in
    elm_object_part_text_set(en4, "guide", "Type in here");
    elm_entry_scrollable_set(en4, EINA_TRUE);
    elm_scroller_bounce_set(en4, EINA_TRUE, EINA_TRUE);
-   elm_entry_autocapital_type_set(en4, EINA_TRUE);
+   elm_entry_autocapital_type_set(en4, ELM_AUTOCAPITAL_TYPE_WORD);
    evas_object_size_hint_weight_set(en4, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
    evas_object_size_hint_align_set(en4, EVAS_HINT_FILL, EVAS_HINT_FILL);
    elm_grid_pack(gd, en4, 5, 65, 90, 20);

-- 


Reply via email to