[elementary] Clarification for a func's doc.

SVN revision: 62318
This commit is contained in:
Gustavo Lima Chaves 2011-08-10 21:32:00 +00:00
parent 5f45eed2af
commit a9c00d900c
1 changed files with 6 additions and 2 deletions

View File

@ -2194,9 +2194,13 @@ extern "C" {
EAPI void elm_object_focus_custom_chain_set(Evas_Object *obj, Eina_List *objs) EINA_ARG_NONNULL(1);
/**
* Unset custom focus chain
* Unset a custom focus chain on a given Elementary widget
*
* @param obj The container object to remove focus chain from
*
* Any focus chain previously set on @p obj (for its child objects)
* is removed entirely after this call.
*
* @param obj The container object
* @ingroup Focus
*/
EAPI void elm_object_focus_custom_chain_unset(Evas_Object *obj) EINA_ARG_NONNULL(1);