From 18c952dcd180c08fe3c0916d5246fbec83af1560 Mon Sep 17 00:00:00 2001 From: Sanjeev BA Date: Wed, 7 Mar 2012 12:57:00 +0000 Subject: [PATCH] Mention how to delete added items. Signed-off-by: Sanjeev BA SVN revision: 68940 --- legacy/elementary/src/lib/elc_multibuttonentry.h | 8 ++++++++ 1 file changed, 8 insertions(+) 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);