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

@ -28,7 +28,7 @@
* (again with @ref elm_gesture_layer_cb_set)
*
* The information reported by gesture layer to your callback is depending
* on @ref Elm_Gesture_Type:
* on @ref Elm_Gesture_Type :
* @ref Elm_Gesture_Taps_Info is the info reported for tap gestures:
* @ref ELM_GESTURE_N_TAPS, @ref ELM_GESTURE_N_LONG_TAPS,
* @ref ELM_GESTURE_N_DOUBLE_TAPS, @ref ELM_GESTURE_N_TRIPLE_TAPS.

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))
/**