summaryrefslogtreecommitdiff
path: root/src/bindings
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2016-08-31 17:08:00 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2016-09-01 11:57:43 +0900
commitb4e20fd6329ef76163343baab6a7c867ea4e9105 (patch)
treed1fff02c7874b8ac753a40c142e3396293e3eb5f /src/bindings
parentff0952abda496ec0376da4e3fed114917fd870c8 (diff)
downloadefl-b4e20fd6329ef76163343baab6a7c867ea4e9105.tar.gz
js: Switch to Efl_Event
I haven't tested the compilation... but I guess this can't hurt.
Diffstat (limited to 'src/bindings')
-rw-r--r--src/bindings/js/eo_js/eo_js_event.hh6
1 files 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<v8::Function>* 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<v8::Value> get_event_info<void>(void*, v8::Isolate* isolate, co
}
template <typename T>
-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);