1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

fix typoe in comments

This commit is contained in:
Gabor Kiss-Vamosi 2020-07-08 10:31:36 +02:00
parent e85888908a
commit a5de71933b
2 changed files with 4 additions and 4 deletions

View File

@ -1763,7 +1763,7 @@ lv_res_t lv_event_send_refresh(lv_obj_t * obj)
} }
/** /**
* Send LV_EVENT_REFRESH event to an object all of its children. * Send LV_EVENT_REFRESH event to an object and all of its children.
* @param obj pointer to an object or NULL to refresh all objects of all displays * @param obj pointer to an object or NULL to refresh all objects of all displays
*/ */
void lv_event_send_refresh_recursive(lv_obj_t * obj) void lv_event_send_refresh_recursive(lv_obj_t * obj)
@ -1797,7 +1797,7 @@ void lv_event_send_refresh_recursive(lv_obj_t * obj)
} }
/** /**
* Queue the sending of LV_EVENT_REFRESH event to an object all of its children. * Queue the sending of LV_EVENT_REFRESH event to an object and all of its children.
* The events won't be sent immediately but after `LV_DISP_DEF_REFR_PERIOD` delay. * The events won't be sent immediately but after `LV_DISP_DEF_REFR_PERIOD` delay.
* It is useful to refresh object only on a reasonable rate if this function is called very often. * It is useful to refresh object only on a reasonable rate if this function is called very often.
* @param obj pointer to an object or NULL to refresh all objects of all displays * @param obj pointer to an object or NULL to refresh all objects of all displays

View File

@ -832,13 +832,13 @@ lv_res_t lv_event_send(lv_obj_t * obj, lv_event_t event, const void * data);
lv_res_t lv_event_send_refresh(lv_obj_t * obj); lv_res_t lv_event_send_refresh(lv_obj_t * obj);
/** /**
* Send LV_EVENT_REFRESH event to an object all of its children * Send LV_EVENT_REFRESH event to an object and all of its children
* @param obj pointer to an object or NULL to refresh all objects of all displays * @param obj pointer to an object or NULL to refresh all objects of all displays
*/ */
void lv_event_send_refresh_recursive(lv_obj_t * obj); void lv_event_send_refresh_recursive(lv_obj_t * obj);
/** /**
* Queue the sending of LV_EVENT_REFRESH event to an object all of its children. * Queue the sending of LV_EVENT_REFRESH event to an object and all of its children.
* The events won't be sent immediately but after `LV_DISP_DEF_REFR_PERIOD` delay. * The events won't be sent immediately but after `LV_DISP_DEF_REFR_PERIOD` delay.
* It is useful to refresh object only on a reasonable rate if this function is called very often. * It is useful to refresh object only on a reasonable rate if this function is called very often.
* @param obj pointer to an object or NULL to refresh all objects of all displays * @param obj pointer to an object or NULL to refresh all objects of all displays