From a5de71933b60bf4971260dc762d23953b8f9289a Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Wed, 8 Jul 2020 10:31:36 +0200 Subject: [PATCH] fix typoe in comments --- src/lv_core/lv_obj.c | 4 ++-- src/lv_core/lv_obj.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lv_core/lv_obj.c b/src/lv_core/lv_obj.c index c11917d8d..e30520a0d 100644 --- a/src/lv_core/lv_obj.c +++ b/src/lv_core/lv_obj.c @@ -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 */ 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. * 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 diff --git a/src/lv_core/lv_obj.h b/src/lv_core/lv_obj.h index e6113e0d5..0f985ff83 100644 --- a/src/lv_core/lv_obj.h +++ b/src/lv_core/lv_obj.h @@ -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); /** - * 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 */ 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. * 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