summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2014-04-02 13:16:04 +0100
committerTom Hacohen <tom@stosb.com>2014-04-10 04:20:21 +0100
commitd36ca8f949489ff19e6e9987646ff262e4773d36 (patch)
treebde789b51555a366d6d2de98753cf6028ddd2956
parent92cc33c46ff04db9a4a3a88e563a66a52f22cbe0 (diff)
downloadefl-d36ca8f949489ff19e6e9987646ff262e4773d36.tar.gz
Eo: Reintroduce the events now that eo1 is gone.
-rw-r--r--src/lib/eo/eo2_base_class.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/lib/eo/eo2_base_class.c b/src/lib/eo/eo2_base_class.c
index d11d073c14..b1bd8b2673 100644
--- a/src/lib/eo/eo2_base_class.c
+++ b/src/lib/eo/eo2_base_class.c
@@ -912,14 +912,12 @@ EAPI const Eina_Value_Type *EO_DBG_INFO_TYPE = &_EO_DBG_INFO_TYPE;
/* EO_CLASS stuff */
#define MY_CLASS EO_CLASS
-/* FIXME: Set proper type descriptions. */
-// FIXME: eo multiple definition
-/* EAPI const Eo_Event_Description _EO_EV_CALLBACK_ADD = */
-/* EO_EVENT_DESCRIPTION("callback,add", "A callback was added."); */
-/* EAPI const Eo_Event_Description _EO_EV_CALLBACK_DEL = */
-/* EO_EVENT_DESCRIPTION("callback,del", "A callback was deleted."); */
-/* EAPI const Eo_Event_Description _EO_EV_DEL = */
-/* EO_HOT_EVENT_DESCRIPTION("del", "Obj is being deleted."); */
+EAPI const Eo_Event_Description _EO_EV_CALLBACK_ADD =
+ EO_EVENT_DESCRIPTION("callback,add", "A callback was added.");
+EAPI const Eo_Event_Description _EO_EV_CALLBACK_DEL =
+ EO_EVENT_DESCRIPTION("callback,del", "A callback was deleted.");
+EAPI const Eo_Event_Description _EO_EV_DEL =
+ EO_HOT_EVENT_DESCRIPTION("del", "Obj is being deleted.");
static void
_constructor(Eo *obj, void *class_data EINA_UNUSED)