From 4ce9a424561af584bdb4638d5e848d168d48d9bc Mon Sep 17 00:00:00 2001 From: Lauro Moura Date: Wed, 29 Jun 2016 17:23:31 -0300 Subject: [PATCH] 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 283b018ed4..45d023ee2e 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 get_event_info(void*, v8::Isolate* isolate, co } template -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(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)