davemds pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=aba525063456cc11aff46c9c8968749ae2bf8fa8

commit aba525063456cc11aff46c9c8968749ae2bf8fa8
Author: Dave Andreoli <d...@gurumeditation.it>
Date:   Sun Apr 24 12:11:07 2016 +0200

    Follow recent Eo changes
---
 efl/eo/efl.eo.pyx                  | 4 ++--
 efl/evas/efl.evas_object_smart.pxi | 2 +-
 include/efl.c_eo.pxd               | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/efl/eo/efl.eo.pyx b/efl/eo/efl.eo.pyx
index 73e905c..7c7b9f0 100644
--- a/efl/eo/efl.eo.pyx
+++ b/efl/eo/efl.eo.pyx
@@ -38,7 +38,7 @@ from efl.eina cimport Eina_Bool, \
     Eina_Iterator, eina_iterator_next, eina_iterator_free
 from efl.c_eo cimport Eo as cEo, eo_init, eo_shutdown, eo_del, \
     eo_class_name_get, eo_class_get, eo_base_class_get,\
-    eo_key_data_set, eo_key_data_get, eo_key_data_del, \
+    eo_key_data_set, eo_key_data_get, eo_key_del, \
     eo_event_callback_add, eo_event_callback_del, EO_BASE_EVENT_DEL, \
     eo_parent_get, eo_parent_set, Eo_Event_Description, \
     eo_event_freeze, eo_event_thaw, eo_event_freeze_count_get, \
@@ -190,7 +190,7 @@ cdef Eina_Bool _eo_event_del_cb(void *data, const Eo_Event 
*event) with gil:
     EINA_LOG_DOM_DBG(PY_EFL_EO_LOG_DOMAIN, "Deleting Eo: %s", cls_name)
 
     eo_event_callback_del(self.obj, EO_BASE_EVENT_DEL, _eo_event_del_cb, 
<const void *>self)
-    eo_key_data_del(self.obj, "python-eo")
+    eo_key_del(self.obj, "python-eo")
     self.obj = NULL
     Py_DECREF(self)
 
diff --git a/efl/evas/efl.evas_object_smart.pxi 
b/efl/evas/efl.evas_object_smart.pxi
index 931e581..a8c6277 100644
--- a/efl/evas/efl.evas_object_smart.pxi
+++ b/efl/evas/efl.evas_object_smart.pxi
@@ -16,7 +16,7 @@
 # along with this Python-EFL.  If not, see <http://www.gnu.org/licenses/>.
 
 from efl.utils.conversions cimport eina_list_objects_to_python_list
-from efl.c_eo cimport eo_key_data_del, eo_key_data_set, eo_key_data_get
+from efl.c_eo cimport eo_key_data_set, eo_key_data_get
 from efl.eo cimport Eo, EoIterator
 
 from cpython cimport Py_INCREF, Py_DECREF, PyObject_Call, \
diff --git a/include/efl.c_eo.pxd b/include/efl.c_eo.pxd
index 390435f..492bd4e 100644
--- a/include/efl.c_eo.pxd
+++ b/include/efl.c_eo.pxd
@@ -112,7 +112,7 @@ cdef extern from "Eo.h":
 
     void  eo_key_data_set(Eo *obj, const char *key, const void *data)
     void *eo_key_data_get(Eo *obj, const char *key)
-    void  eo_key_data_del(Eo *obj, const char *key)
+    void  eo_key_del(Eo *obj, const char *key)
 
     const Eo_Class *eo_class_get(const Eo *obj)
     const char *eo_class_name_get(const Eo_Class *klass)

-- 


Reply via email to