diff options
author | Dave Andreoli <dave@gurumeditation.it> | 2016-05-18 21:38:46 +0200 |
---|---|---|
committer | Dave Andreoli <dave@gurumeditation.it> | 2016-05-18 21:38:46 +0200 |
commit | eca2dfaa0bca3c169e54f4f7956b06c4a7ee3ee1 (patch) | |
tree | 5ef289876bb89c69431367f8837ed7f488499cc1 /include/efl.c_eo.pxd | |
parent | aba525063456cc11aff46c9c8968749ae2bf8fa8 (diff) |
Follow Eo changes
eo_del -> eo_unref
eo_key_del -> eo_key_set(NULL)
EO_BASE_EVENT_DEL -> EO_EVENT_DEL
Diffstat (limited to 'include/efl.c_eo.pxd')
-rw-r--r-- | include/efl.c_eo.pxd | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/efl.c_eo.pxd b/include/efl.c_eo.pxd index 492bd4e..c35b103 100644 --- a/include/efl.c_eo.pxd +++ b/include/efl.c_eo.pxd | |||
@@ -83,7 +83,7 @@ cdef extern from "Eo.h": | |||
83 | # Eo Events | 83 | # Eo Events |
84 | # | 84 | # |
85 | 85 | ||
86 | cdef const Eo_Event_Description *EO_BASE_EVENT_DEL | 86 | cdef const Eo_Event_Description *EO_EVENT_DEL |
87 | 87 | ||
88 | 88 | ||
89 | #################################################################### | 89 | #################################################################### |
@@ -104,7 +104,6 @@ cdef extern from "Eo.h": | |||
104 | Eo *eo_ref(const Eo *obj) | 104 | Eo *eo_ref(const Eo *obj) |
105 | void eo_unref(const Eo *obj) | 105 | void eo_unref(const Eo *obj) |
106 | int eo_ref_get(const Eo *obj) | 106 | int eo_ref_get(const Eo *obj) |
107 | void eo_del(const Eo *obj) | ||
108 | 107 | ||
109 | void eo_wref_add(Eo **wref) | 108 | void eo_wref_add(Eo **wref) |
110 | 109 | ||
@@ -112,7 +111,6 @@ cdef extern from "Eo.h": | |||
112 | 111 | ||
113 | void eo_key_data_set(Eo *obj, const char *key, const void *data) | 112 | void eo_key_data_set(Eo *obj, const char *key, const void *data) |
114 | void *eo_key_data_get(Eo *obj, const char *key) | 113 | void *eo_key_data_get(Eo *obj, const char *key) |
115 | void eo_key_del(Eo *obj, const char *key) | ||
116 | 114 | ||
117 | const Eo_Class *eo_class_get(const Eo *obj) | 115 | const Eo_Class *eo_class_get(const Eo *obj) |
118 | const char *eo_class_name_get(const Eo_Class *klass) | 116 | const char *eo_class_name_get(const Eo_Class *klass) |