Cleanup Doxygen Warnings - elementary 5

Warning resolved:
unable to resolve reference to <name> for \ref command.

Files modified:
elm_gesture_layer.h
elm_object_item.h

Patch by: Thiago Thamada <tiba@profusion.mobi>

SVN revision: 70527
This commit is contained in:
Thiago Thamada 2012-04-27 12:55:29 +00:00 committed by Jonas M. Gastal
parent ce13a30156
commit 6bb1a56a68
2 changed files with 11 additions and 1 deletions

View File

@ -71,6 +71,16 @@ EAPI Evas_Object *elm_object_item_part_content_unset(Elm_Object_
*/
EAPI void elm_object_item_part_text_set(Elm_Object_Item *it, const char *part, const char *label);
/**
* Macro to set a label of an object item.
*
* @param it The Elementary object item.
* @param label The new text of the label.
*
* @note Elementary object items may have many labels.
*
* @ingroup General
*/
#define elm_object_item_text_set(it, label) elm_object_item_part_text_set((it), NULL, (label))
/**