From cfed728714bda4f49f37f598e8887a17da6a2d4d Mon Sep 17 00:00:00 2001 From: Themba Dube Date: Sun, 18 Oct 2020 08:20:53 -0400 Subject: [PATCH] Remove typedef from lv_obj.h as it is now in lv_grid.h --- src/lv_core/lv_obj.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lv_core/lv_obj.h b/src/lv_core/lv_obj.h index c43c48b4c..4b1582296 100644 --- a/src/lv_core/lv_obj.h +++ b/src/lv_core/lv_obj.h @@ -208,7 +208,7 @@ typedef uint16_t lv_obj_flag_t; #include "lv_obj_draw.h" -typedef struct _lv_obj_t { +struct _lv_obj_t { struct _lv_obj_t * parent; /**< Pointer to the parent object*/ lv_ll_t child_ll; /**< Linked list to store the children objects*/ @@ -258,7 +258,7 @@ typedef struct _lv_obj_t { uint8_t flex_dir; -} lv_obj_t; +}; enum { LV_OBJ_PART_MAIN,