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

fix(style): add one space before { for struct definition (#2160)

This commit is contained in:
Xiang Xiao 2021-03-24 04:01:56 -07:00 committed by GitHub
parent 5f993286a2
commit 7cc3ed51bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -236,7 +236,7 @@ typedef struct {
uint8_t event_dsc_cnt; /**< Number of event callabcks stored in `event_cb` array*/
}lv_obj_spec_attr_t;
typedef struct _lv_obj_t{
typedef struct _lv_obj_t {
const lv_obj_class_t * class_p;
struct _lv_obj_t * parent;
lv_obj_spec_attr_t * spec_attr;

View File

@ -226,7 +226,7 @@ typedef enum {
/**
* Descriptor for style transitions
*/
typedef struct _lv_style_transiton_t{
typedef struct _lv_style_transiton_t {
const lv_style_prop_t * props; /**< An array with the properties to animate.*/
const lv_anim_path_t * path; /**< A path for the animation.*/
uint32_t time; /**< Duration of the transition in [ms]*/