rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=6622ecc85a9bc81fe23cf090698a855c38588d44

commit 6622ecc85a9bc81fe23cf090698a855c38588d44
Author: Vyacheslav Reutskiy <v.reuts...@samsung.com>
Date:   Tue Jul 21 10:12:37 2015 +0300

    Program editor: replace the ewe_entry to elm_entry
    
    Change-Id: I8f25caac8103970b565d4b6ae1e3297a6b275123
---
 src/bin/ui/editors/animator_program_editor.c | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/bin/ui/editors/animator_program_editor.c 
b/src/bin/ui/editors/animator_program_editor.c
index 38f6697..12307ce 100644
--- a/src/bin/ui/editors/animator_program_editor.c
+++ b/src/bin/ui/editors/animator_program_editor.c
@@ -386,7 +386,7 @@ _prop_item_##sub##_##value##_add(Evas_Object *parent, \
 { \
    Evas_Object *item, *entry; \
    ITEM_ADD_(parent, item, text, "editor") \
-   EWE_ENTRY_ADD(parent, entry, true) \
+   ENTRY_ADD(parent, entry, true) \
    REGEX_SET(entry, regex); \
    if (tooltip) \
      elm_object_tooltip_text_set(entry, tooltip); \
@@ -575,7 +575,7 @@ _prop_item_program_script_add(Evas_Object *parent,
    ITEM_ADD_(parent, item, _("script"), "script");
 
    BOX_ADD(item, box, true, false);
-   EWE_ENTRY_ADD(item, entry, false);
+   ENTRY_ADD(item, entry, false);
    elm_scroller_policy_set(entry, ELM_SCROLLER_POLICY_OFF,
                            ELM_SCROLLER_POLICY_AUTO);
    elm_entry_editable_set(entry, false);
@@ -1487,7 +1487,7 @@ _prop_item_program_transition_add(Evas_Object *parent,
                                   _on_transition_opt_current_changed, 
prog_edit);
 
    ITEM_ADD_(box, transition.layout1, _("length"), "editor");
-   EWE_ENTRY_ADD(transition.layout1, transition.entry1, true);
+   ENTRY_ADD(transition.layout1, transition.entry1, true);
    REGEX_SET(transition.entry1, FLOAT_NUMBER_REGEX);
    elm_object_part_content_set(transition.layout1,
                                "elm.swallow.content",
@@ -1496,14 +1496,14 @@ _prop_item_program_transition_add(Evas_Object *parent,
                                   _on_transition_time_active, prog_edit);
 
    ITEM_ADD_(box, transition.layout2, _("param1"), "editor");
-   EWE_ENTRY_ADD(transition.layout2, transition.entry2, true);
+   ENTRY_ADD(transition.layout2, transition.entry2, true);
    REGEX_SET(transition.entry2, FLOAT_NUMBER_REGEX);
    elm_object_part_content_set(transition.layout2,
                                "elm.swallow.content",
                                transition.entry2);
 
    ITEM_ADD_(box, transition.layout3, _("param2"), "editor");
-   EWE_ENTRY_ADD(transition.layout3, transition.entry3, true);
+   ENTRY_ADD(transition.layout3, transition.entry3, true);
    REGEX_SET(transition.entry3, FLOAT_NUMBER_REGEX);
    elm_object_part_content_set(transition.layout3,
                                "elm.swallow.content",
@@ -1571,13 +1571,13 @@ _prop_item_program_action_add(Evas_Object *parent,
    BOX_ADD(item, box, false, true);
    EWE_COMBOBOX_ADD(box, action.combobox);
    ITEM_ADD_(box, action.layout1, _("param1"), "editor");
-   EWE_ENTRY_ADD(action.layout1, action.entry1, true);
+   ENTRY_ADD(action.layout1, action.entry1, true);
    elm_object_part_content_set(action.layout1,
                                "elm.swallow.content",
                                action.entry1);
 
    ITEM_ADD_(box, action.layout2, _("param2"), "editor");
-   EWE_ENTRY_ADD(action.layout2, action.entry2, true);
+   ENTRY_ADD(action.layout2, action.entry2, true);
    elm_object_part_content_set(action.layout2,
                                "elm.swallow.content",
                                action.entry2);
@@ -1781,7 +1781,7 @@ _prop_item_program_in_add(Evas_Object *parent,
    BOX_ADD(item, box, false, false);
 
    ITEM_ADD_(box, prop.in.item_from, _("from"), "editor");
-   EWE_ENTRY_ADD(prop.in.item_from, prop.in.entry_from, true);
+   ENTRY_ADD(prop.in.item_from, prop.in.entry_from, true);
    REGEX_SET(prop.in.entry_from, FLOAT_NUMBER_REGEX);
    elm_object_part_content_set(prop.in.item_from, "elm.swallow.content", 
prop.in.entry_from);
    evas_object_smart_callback_add(prop.in.entry_from, "changed,user",
@@ -1789,7 +1789,7 @@ _prop_item_program_in_add(Evas_Object *parent,
    elm_box_pack_end(box, prop.in.item_from);
 
    ITEM_ADD_(box, prop.in.item_range, _("range"), "editor");
-   EWE_ENTRY_ADD(prop.in.item_range, prop.in.entry_range, true);
+   ENTRY_ADD(prop.in.item_range, prop.in.entry_range, true);
    REGEX_SET(prop.in.entry_range, FLOAT_NUMBER_REGEX);
    elm_object_part_content_set(prop.in.item_range, "elm.swallow.content", 
prop.in.entry_range);
    evas_object_smart_callback_add(prop.in.entry_range, "changed,user",

-- 


Reply via email to