From b4e20fd6329ef76163343baab6a7c867ea4e9105 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Wed, 31 Aug 2016 17:08:00 +0900 Subject: [PATCH] js: Switch to Efl_Event I haven't tested the compilation... but I guess this can't hurt. --- src/bindings/js/eo_js/eo_js_event.hh | 6 +++--- 1 file changed, 3 insertions(+), 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 617df6080a..283b018ed4 100644 --- a/src/bindings/js/eo_js/eo_js_event.hh +++ b/src/bindings/js/eo_js/eo_js_event.hh @@ -17,8 +17,8 @@ namespace efl { namespace eo { namespace js { struct event_information { eina::js::global_ref* constructor; - Eo_Event_Description const* event; - Eo_Event_Cb event_callback; + Efl_Event_Description const* event; + Efl_Event_Cb event_callback; const char* class_name; }; @@ -54,7 +54,7 @@ inline v8::Local get_event_info(void*, v8::Isolate* isolate, co } template -inline Eina_Bool event_callback(void* data, Eo_Event const* eo_event) +inline Eina_Bool event_callback(void* data, Efl_Event const* eo_event) { v8::Isolate* isolate = v8::Isolate::GetCurrent(); v8::HandleScope handle_scope(isolate);