Cleanup Doxygen Warnings - elementary 1

Warning resolved:
explicit link request to <name> could not be resolved

Files modified:
elm_clock.h
elm_gengrid.h
elm_index.h
elm_slideshow.h
elm_web.h

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

SVN revision: 70523
This commit is contained in:
Thiago Thamada 2012-04-27 12:55:08 +00:00 committed by Jonas M. Gastal
parent ef48257aa7
commit 97429ed053
5 changed files with 6 additions and 11 deletions

View File

@ -135,8 +135,7 @@ EAPI void elm_clock_time_get(const Evas_Object *obj, int *hrs, int
* user interaction</b>. When in edition mode, clocks @b stop
* ticking, until one brings them back to canonical mode. The
* elm_clock_edit_mode_set() function will influence which digits
* of the clock will be editable. By default, all of them will be
* (#ELM_CLOCK_NONE).
* of the clock will be editable.
*
* @note am/pm sheets, if being shown, will @b always be editable
* under edition mode.
@ -171,10 +170,6 @@ EAPI Eina_Bool elm_clock_edit_get(const Evas_Object *obj);
* @param digedit Bit mask indicating the digits to be editable
* (values in #Elm_Clock_Edit_Mode).
*
* If the @p digedit param is #ELM_CLOCK_NONE, editing will be
* disabled on @p obj (same effect as elm_clock_edit_set(), with @c
* EINA_FALSE).
*
* @see elm_clock_edit_mode_get()
*
* @ingroup Clock

View File

@ -60,7 +60,7 @@
* functions in this struct (methods) when an item is "realized"
* (i.e., created dynamically, while the user is scrolling the
* grid). All objects will simply be deleted when no longer needed
* with evas_object_del(). The #Elm_GenGrid_Item_Class structure
* with evas_object_del(). The #Elm_Gengrid_Item_Class structure
* contains the following members:
* - @c item_style - This is a constant string and simply defines
* the name of the item style. It @b must be specified and the
@ -549,7 +549,7 @@ EAPI Elm_Object_Item *elm_gengrid_selected_item_get(const Evas_Objec
* This returns a list of the selected items, in the order that
* they appear in the grid. This list is only valid as long as no
* more items are selected or unselected (or unselected implicitly
* by deletion). The list contains #Gengrid item pointers as
* by deletion). The list contains Gengrid item pointers as
* data, naturally.
*
* @see elm_gengrid_selected_item_get()

View File

@ -240,7 +240,7 @@ EAPI Elm_Object_Item *elm_index_item_insert_before(Evas_Object *obj, Elm_Ob
* @param func The function to call when the item is clicked.
* @param data The item data to set for the index's item
* @param cmp_func The comparing function to be used to sort index
* items <b>by #index item handles</b>
* items <b>by index item handles</b>
* @param cmp_data_func A @b fallback function to be called for the
* sorting of index items <b>by item data</b>). It will be used
* when @p cmp_func returns @c 0 (equality), which means an index

View File

@ -125,7 +125,7 @@ EAPI Elm_Object_Item *elm_slideshow_item_add(Evas_Object *obj, const Elm_Sl
* @param itc The item class for the item
* @param data The item's data
* @param func The comparing function to be used to sort slideshow
* items <b>by #Elm_Slideshow_Item item handles</b>
* items <b>by #Elm_Slideshow_Item_Class item handles</b>
* @return Returns The slideshow item handle, on success, or
* @c NULL, on errors
*

View File

@ -206,7 +206,7 @@ typedef enum
ELM_WEB_ZOOM_MODE_MANUAL = 0, /**< Zoom controlled normally by elm_web_zoom_set */
ELM_WEB_ZOOM_MODE_AUTO_FIT, /**< Zoom until content fits in web object */
ELM_WEB_ZOOM_MODE_AUTO_FILL, /**< Zoom until content fills web object */
ELM_WEB_ZOOM_MODE_LAST
ELM_WEB_ZOOM_MODE_LAST /**< Sentinel value to indicate end */
} Elm_Web_Zoom_Mode;
/**