yakov pushed a commit to branch master.

http://git.enlightenment.org/tools/erigo.git/commit/?id=90281fc68a2ba6cfdc0f4295034c61505227ac66

commit 90281fc68a2ba6cfdc0f4295034c61505227ac66
Author: Yakov Goldberg <yako...@samsung.com>
Date:   Mon Jul 6 18:58:14 2015 +0300

    Fix after event name changed
    
    ELM_LAYOUT_EVENT_FOCUSED->ELM_WIDGET_EVENT_FOCUSED
    ELM_LAYOUT_EVENT_UNFOCUSED->ELM_WIDGET_EVENT_UNFOCUSED
---
 src/bin/gui/props_helper.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/bin/gui/props_helper.c b/src/bin/gui/props_helper.c
index 10c3f41..4d99653 100644
--- a/src/bin/gui/props_helper.c
+++ b/src/bin/gui/props_helper.c
@@ -630,7 +630,7 @@ static Eina_Bool
 _unfocused_cb(void *data, Eo *obj, const Eo_Event_Description *desc 
EINA_UNUSED, void *event_info EINA_UNUSED)
 {
    Eo *bubble = data;
-   eo_do(obj, eo_event_callback_del(ELM_LAYOUT_EVENT_UNFOCUSED, _unfocused_cb, 
bubble));
+   eo_do(obj, eo_event_callback_del(ELM_WIDGET_EVENT_UNFOCUSED, _unfocused_cb, 
bubble));
    eo_del(bubble);
    return EO_CALLBACK_CONTINUE;
 }
@@ -655,13 +655,13 @@ _focused_cb(void *data, Eo *obj, const 
Eo_Event_Description *desc EINA_UNUSED, v
    eo_do(bubble, efl_gfx_visible_set(EINA_TRUE));
    eo_do(bubble, elm_obj_bubble_pos_set(ELM_BUBBLE_POS_BOTTOM_LEFT));
 
-   eo_do(obj, eo_event_callback_add(ELM_LAYOUT_EVENT_UNFOCUSED, _unfocused_cb, 
bubble));
+   eo_do(obj, eo_event_callback_add(ELM_WIDGET_EVENT_UNFOCUSED, _unfocused_cb, 
bubble));
    return EO_CALLBACK_CONTINUE;
 }
 
 void
 prop_memo_bubble_add(Eo *obj, const char *memo)
 {
-   eo_do(obj, eo_event_callback_add(ELM_LAYOUT_EVENT_FOCUSED, _focused_cb, 
memo));
+   eo_do(obj, eo_event_callback_add(ELM_WIDGET_EVENT_FOCUSED, _focused_cb, 
memo));
 }
 

-- 


Reply via email to