diff --git a/legacy/elementary/src/lib/elc_multibuttonentry.h b/legacy/elementary/src/lib/elc_multibuttonentry.h index e7eef74f49..d34dea44d6 100644 --- a/legacy/elementary/src/lib/elc_multibuttonentry.h +++ b/legacy/elementary/src/lib/elc_multibuttonentry.h @@ -121,6 +121,8 @@ EAPI void elm_multibuttonentry_expanded_set(Evas_Object *o * @param data The pointer to the data to be attached * @return A handle to the item added or NULL if not possible * + * @see Use elm_object_item_del() to delete the item. + * * @ingroup Multibuttonentry */ EAPI Elm_Object_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data); @@ -134,6 +136,8 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const * @param data The pointer to the data to be attached * @return A handle to the item added or NULL if not possible * + * @see Use elm_object_item_del() to delete the item. + * * @ingroup Multibuttonentry */ EAPI Elm_Object_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data); @@ -149,6 +153,8 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const c * @param data The pointer to the data to be attached * @return A handle to the item added or NULL if not possible * + * @see Use elm_object_item_del() to delete the item. + * * @ingroup Multibuttonentry */ EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *label, Evas_Smart_Cb func, void *data); @@ -163,6 +169,8 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj, * @param data The pointer to the data to be attached * @return A handle to the item added or NULL if not possible * + * @see Use elm_object_item_del() to delete the item. + * * @ingroup Multibuttonentry */ EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *label, Evas_Smart_Cb func, void *data);