felipealmeida pushed a commit to branch master.

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

commit 4ce9a424561af584bdb4638d5e848d168d48d9bc
Author: Lauro Moura <lauromo...@expertisesolutions.com.br>
Date:   Wed Jun 29 17:23:31 2016 -0300

    eo_js: Update event callback after return removal.
---
 src/bindings/js/eo_js/eo_js_event.hh | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/bindings/js/eo_js/eo_js_event.hh 
b/src/bindings/js/eo_js/eo_js_event.hh
index 283b018..45d023e 100644
--- a/src/bindings/js/eo_js/eo_js_event.hh
+++ b/src/bindings/js/eo_js/eo_js_event.hh
@@ -54,7 +54,7 @@ inline v8::Local<v8::Value> get_event_info<void>(void*, 
v8::Isolate* isolate, co
 }
 
 template <typename T>
-inline Eina_Bool event_callback(void* data, Efl_Event const* eo_event)
+inline void event_callback(void* data, Efl_Event const* eo_event)
 {
   v8::Isolate* isolate = v8::Isolate::GetCurrent();
   v8::HandleScope handle_scope(isolate);
@@ -67,8 +67,6 @@ inline Eina_Bool event_callback(void* data, Efl_Event const* 
eo_event)
     get_event_info<T>(eo_event->info, isolate, event->event_info->class_name)
   };
   event->function.handle()->Call(eina::js::compatibility_global(), 2, 
call_args);
-  
-  return EO_CALLBACK_CONTINUE;
 }
 
 inline eina::js::compatibility_return_type 
on_event(eina::js::compatibility_callback_info_type args)

-- 


Reply via email to