Mention how to delete added items.
authorsanjeev <sanjeev@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 7 Mar 2012 12:57:00 +0000 (12:57 +0000)
committersanjeev <sanjeev@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 7 Mar 2012 12:57:00 +0000 (12:57 +0000)
Signed-off-by: Sanjeev BA <eflelev8@gmail.com>
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68940 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elc_multibuttonentry.h

index e7eef74..d34dea4 100644 (file)
@@ -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);