Eo: Eo_Event -> Efl_Event

#FollowTheWhiteRabbit (tm)
This commit is contained in:
Davide Andreoli 2016-10-14 21:29:15 +02:00
parent 99c618fc2b
commit fa5b944f31
2 changed files with 5 additions and 5 deletions

View File

@ -44,7 +44,7 @@ from efl.c_eo cimport Eo as cEo, efl_object_init, efl_object_shutdown, efl_del,
efl_event_freeze, efl_event_thaw, efl_event_freeze_count_get, \
efl_event_global_freeze, efl_event_global_thaw, \
efl_event_global_freeze_count_get, efl_event_callback_stop, \
efl_children_iterator_new, Eo_Event
efl_children_iterator_new, Efl_Event
from efl.utils.logger cimport add_logger
@ -182,7 +182,7 @@ cdef void _register_decorated_callbacks(Eo obj):
######################################################################
cdef void _efl_event_del_cb(void *data, const Eo_Event *event) with gil:
cdef void _efl_event_del_cb(void *data, const Efl_Event *event) with gil:
cdef:
Eo self = <Eo>data
const char *cls_name = efl_class_name_get(efl_class_get(self.obj))

View File

@ -69,11 +69,11 @@ cdef extern from "Eo.h":
Eina_Bool legacy_is # Internal use: if is a legacy event.
ctypedef _Efl_Event_Description Efl_Event_Description
ctypedef struct _Eo_Event:
ctypedef struct _Efl_Event:
Efl_Object *obj # The object the event was called on. */
const Efl_Event_Description *desc # The event description. */
void *event_info # Extra event information passed by the event caller. */
ctypedef _Eo_Event Eo_Event
ctypedef _Efl_Event Efl_Event
####################################################################
@ -86,7 +86,7 @@ cdef extern from "Eo.h":
####################################################################
# Other typedefs
#
ctypedef void (*Efl_Event_Cb)(void *data, const Eo_Event *event)
ctypedef void (*Efl_Event_Cb)(void *data, const Efl_Event *event)
ctypedef void (*efl_key_data_free_func)(void *)