summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYakov Goldberg <yakov.g@samsung.com>2013-10-14 16:15:11 +0300
committerYakov Goldberg <yakov.g@samsung.com>2013-10-14 18:12:28 +0300
commited8301b8bfc5faab23b76668acc79f88759ecef5 (patch)
tree418e0644a0550dcb716a8480a86159efc3f9573c
parent443012dbcb3de397e536ec2afac0273b7e8cfff9 (diff)
downloadefl-ed8301b8bfc5faab23b76668acc79f88759ecef5.tar.gz
eo: fix doxygen description, which is needed for parser
-rw-r--r--src/lib/eo/Eo.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/eo/Eo.h b/src/lib/eo/Eo.h
index dc105b080c..8ec503f10e 100644
--- a/src/lib/eo/Eo.h
+++ b/src/lib/eo/Eo.h
@@ -1103,6 +1103,7 @@ enum {
#define eo_base_data_del(key) EO_BASE_ID(EO_BASE_SUB_ID_DATA_DEL), EO_TYPECHECK(const char *, key)
/**
+ * @def eo_parent_set
* @brief Set the parent of an object
* @param[in] parent the new parent.
*
@@ -1116,6 +1117,7 @@ enum {
#define eo_parent_set(parent) EO_BASE_ID(EO_BASE_SUB_ID_PARENT_SET), EO_TYPECHECK(Eo *, parent)
/**
+ * @def eo_parent_get
* @brief Get the parent of an object
* @param[out] a pointer to the parent object.
*
@@ -1124,6 +1126,7 @@ enum {
#define eo_parent_get(parent) EO_BASE_ID(EO_BASE_SUB_ID_PARENT_GET), EO_TYPECHECK(Eo **, parent)
/**
+ * @def eo_children_iterator_new
* @brief Get an iterator on all childrens
* @param obj the object to get the childrens from.
* @return a pointer to an Eina_Iterator containing all the childrens.
@@ -1447,7 +1450,7 @@ struct _Eo_Callback_Array_Item
EO_CALLBACK_PRIORITY_DEFAULT, data)
/**
- * @def eo_event_callback_priority_add
+ * @def eo_event_callback_array_priority_add
* @brief Add a callback array for an event with a specific priority.
* @param[in] array an #Eo_Callback_Array_Item of events to listen to.
* @param[in] priority The priority of the callback.
@@ -1460,7 +1463,7 @@ struct _Eo_Callback_Array_Item
#define eo_event_callback_array_priority_add(array, priority, data) EO_BASE_ID(EO_BASE_SUB_ID_EVENT_CALLBACK_ARRAY_PRIORITY_ADD), EO_TYPECHECK(const Eo_Callback_Array_Item *, array), EO_TYPECHECK(Eo_Callback_Priority, priority), EO_TYPECHECK(const void *, data)
/**
- * @def eo_event_callback_del
+ * @def eo_event_callback_array_del
* @brief Del a callback array with a specific data associated to it for an event.
* @param[in] array an #Eo_Callback_Array_Item of events to listen to.
* @param[in] user_data The data to compare.