tasn pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=306f50bf5c53d4f09a8c72b15921cd666adef923

commit 306f50bf5c53d4f09a8c72b15921cd666adef923
Author: Tom Hacohen <t...@stosb.com>
Date:   Wed Mar 2 11:50:51 2016 +0000

    Manually migrate some eo_do for the migration script
    
    The script doesn't handle a few corner cases well. Update the code
    manually so it doesn't have to deal with those.
---
 src/examples/performance/graphical.c | 2 --
 src/lib/elm_win.c                    | 6 ++----
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/src/examples/performance/graphical.c 
b/src/examples/performance/graphical.c
index 9bc60e8..1390ac7 100644
--- a/src/examples/performance/graphical.c
+++ b/src/examples/performance/graphical.c
@@ -452,8 +452,6 @@ _init_scene(Evas_Object *img)
          evas_canvas3d_light_diffuse_set(1.0, 1.0, 1.0, 1.0),
          evas_canvas3d_light_specular_set(1.0, 1.0, 1.0, 1.0),
          evas_canvas3d_light_projection_perspective_set(globalGraphical.angle 
/ 5, 1.0, 1.0, 1000.0),
-         /*evas_canvas3d_light_projection_perspective_set(value, ...) =>
-          evas_canvas3d_light_spot_cutoff_set(~(value / 3))*/
          evas_canvas3d_light_spot_cutoff_set(globalGraphical.angle / 15));
 
    globalGraphical.light_node =
diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c
index 03b3006..f3806af 100644
--- a/src/lib/elm_win.c
+++ b/src/lib/elm_win.c
@@ -67,8 +67,7 @@ static const Elm_Win_Trap *trap = NULL;
          {                                                      \
             edje_object_signal_emit(cursd->edje, \
                         "elm,action,hide_blocker", "elm");      \
-            eo_do(cursd->main_menu, eo_event_callback_call      \
-              (ELM_MENU_EVENT_ELM_ACTION_UNBLOCK_MENU, NULL));  \
+            eo_event_callback_call(cursd->main_menu, 
ELM_MENU_EVENT_ELM_ACTION_UNBLOCK_MENU, NULL); \
          }                                                      \
     }
 
@@ -84,8 +83,7 @@ static const Elm_Win_Trap *trap = NULL;
          {                                                      \
             edje_object_signal_emit(cursd->edje, \
                              "elm,action,show_blocker", "elm"); \
-            eo_do(cursd->main_menu, eo_event_callback_call      \
-              (ELM_WIN_EVENT_ELM_ACTION_BLOCK_MENU, NULL));     \
+            eo_event_callback_call(cursd->main_menu, 
ELM_WIN_EVENT_ELM_ACTION_BLOCK_MENU, NULL); \
          }                                                      \
     }
 

-- 


Reply via email to