1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

Remove typedef from lv_obj.h as it is now in lv_grid.h

This commit is contained in:
Themba Dube 2020-10-18 08:20:53 -04:00
parent c61609f6ee
commit cfed728714

View File

@ -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,