ok warn-- in multibuttonentry - getting bored of seeing it.

SVN revision: 68817
This commit is contained in:
Carsten Haitzler 2012-03-06 12:14:35 +00:00
parent 13bbec8fb6
commit f3f023a108
2 changed files with 8 additions and 8 deletions

View File

@ -1529,25 +1529,25 @@ elm_multibuttonentry_expanded_set(Evas_Object *obj, Eina_Bool expanded)
}
EAPI Elm_Object_Item *
elm_multibuttonentry_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data)
elm_multibuttonentry_item_prepend(Evas_Object *obj, const char *label, void *data)
{
return _add_button_item(obj, label, MULTIBUTTONENTRY_POS_START, NULL, data);
}
EAPI Elm_Object_Item *
elm_multibuttonentry_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data)
elm_multibuttonentry_item_append(Evas_Object *obj, const char *label, void *data)
{
return _add_button_item(obj, label, MULTIBUTTONENTRY_POS_END, NULL, data);
}
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)
elm_multibuttonentry_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *label, void *data)
{
return _add_button_item(obj, label, MULTIBUTTONENTRY_POS_BEFORE, before, data);
}
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)
elm_multibuttonentry_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *label, void *data)
{
return _add_button_item(obj, label, MULTIBUTTONENTRY_POS_AFTER, after, data);
}

View File

@ -113,7 +113,7 @@ EAPI void elm_multibuttonentry_expanded_set(Evas_Object *o
*
* @ingroup Multibuttonentry
*/
EAPI Elm_Object_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data);
EAPI Elm_Object_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const char *label, void *data);
/**
* Append a new item to the multibuttonentry
@ -126,7 +126,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_prepend(Evas_Object *obj, const
*
* @ingroup Multibuttonentry
*/
EAPI Elm_Object_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const char *label, Evas_Smart_Cb func, void *data);
EAPI Elm_Object_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const char *label, void *data);
/**
* Add a new item to the multibuttonentry before the indicated object
@ -141,7 +141,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_append(Evas_Object *obj, const c
*
* @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);
EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj, Elm_Object_Item *before, const char *label, void *data);
/**
* Add a new item to the multibuttonentry after the indicated object
@ -155,7 +155,7 @@ EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_before(Evas_Object *obj,
*
* @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);
EAPI Elm_Object_Item *elm_multibuttonentry_item_insert_after(Evas_Object *obj, Elm_Object_Item *after, const char *label, void *data);
/**
* Get a list of items in the multibuttonentry