elm: fixed documentation + fixed formatting.

This commit is contained in:
Daniel Juyung Seo 2013-04-03 21:26:04 +09:00
parent dc672e0d9a
commit f8bc84d439
3 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ _elm_box_smart_focus_next(Eo *obj, void *_pd EINA_UNUSED, va_list *list)
void *(*list_data_get)(const Eina_List *list);
Elm_Focus_Direction dir = va_arg(*list, Elm_Focus_Direction);
Evas_Object **next = va_arg(*list, Evas_Object **);
Evas_Object **next = va_arg(*list, Evas_Object **);
Eina_Bool *ret = va_arg(*list, Eina_Bool *);
Eina_Bool int_ret;
if (ret) *ret = EINA_FALSE;

View File

@ -2672,9 +2672,9 @@ _elm_widget_focus_next_get(Eo *obj, void *_pd EINA_UNUSED, va_list *list)
* focus before list end, the first candidate will be returned.
*
* @param obj The widget root of sub-tree
* @param dir Direction of focus chain
* @param items list with ordered objects
* @param list_data_get function to get the object from one item of list
* @param dir Direction of focus chain
* @param next The next object in focus chain
* @return EINA_TRUE if don't need focus chain restart/loop back
* to use 'next' obj.

View File

@ -43,7 +43,7 @@ struct _Elm_Entry_Smart_Data
Elm_Text_Format format;
Evas_Coord last_w, ent_mw, ent_mh;
Evas_Coord downx, downy;
Eina_List *items;
Eina_List *items; /** context menu item list */
Eina_List *item_providers;
Eina_List *markup_filters;
Ecore_Job *hov_deljob;