eo: fix doxygen description, which is needed for parser

This commit is contained in:
Yakov Goldberg 2013-10-14 16:15:11 +03:00
parent 443012dbcb
commit ed8301b8bf
1 changed files with 5 additions and 2 deletions

View File

@ -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.