From 50d30e8d888b4566decca67d23bf541ee46499d7 Mon Sep 17 00:00:00 2001 From: Kiss-Vamosi Gabor Date: Sun, 14 May 2017 18:49:44 +0200 Subject: [PATCH] comments update --- lv_obj/lv_dispi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_obj/lv_dispi.h b/lv_obj/lv_dispi.h index 39243d1be..b5175cb05 100644 --- a/lv_obj/lv_dispi.h +++ b/lv_obj/lv_dispi.h @@ -40,8 +40,8 @@ typedef struct typedef enum { - LV_ACTION_RES_INV = 0, - LV_ACTION_RES_OK, + LV_ACTION_RES_INV = 0, /*Typically indicates that the object is deleted (become invalid) in the action function*/ + LV_ACTION_RES_OK, /*The object is valid (no deleted) after the action*/ }lv_action_res_t; typedef lv_action_res_t ( * lv_action_t) (struct __LV_OBJ_T * obj, lv_dispi_t * dispi);