diff options
author | Victor Wheeler <vwheeler63@users.noreply.github.com> | 2024-08-12 06:20:15 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-12 14:20:15 +0200 |
commit | 14461f1d9dcd168d59d07ea682ca671e55b1c0eb (patch) | |
tree | 2b9d2234bdd090deb4b1c967e19b23e1e8d068a2 /src/core/lv_obj_private.h | |
parent | 8699a7e86e18fdb09bb2d72e35c75bdedc539b14 (diff) | |
download | lvgl-14461f1d9dcd168d59d07ea682ca671e55b1c0eb.tar.gz lvgl-14461f1d9dcd168d59d07ea682ca671e55b1c0eb.zip |
fix(docbuild): Doxygen warnings from format errors (part 1 of 2) (#6652)
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
Diffstat (limited to 'src/core/lv_obj_private.h')
-rw-r--r-- | src/core/lv_obj_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lv_obj_private.h b/src/core/lv_obj_private.h index 931454e78..d9eee4939 100644 --- a/src/core/lv_obj_private.h +++ b/src/core/lv_obj_private.h @@ -29,7 +29,7 @@ extern "C" { * They are allocated automatically if any elements is set. */ struct lv_obj_spec_attr_t { - lv_obj_t ** children; /**< Store the pointer of the children in an array.*/ + lv_obj_t ** children; /**< Store the pointer of the children in an array.*/ lv_group_t * group_p; lv_event_list_t event_list; @@ -43,7 +43,7 @@ struct lv_obj_spec_attr_t { uint16_t scroll_snap_x : 2; /**< Where to align the snappable children horizontally, see `lv_scroll_snap_t`*/ uint16_t scroll_snap_y : 2; /**< Where to align the snappable children vertically*/ uint16_t scroll_dir : 4; /**< The allowed scroll direction(s), see `lv_dir_t`*/ - uint16_t layer_type : 2; /**< Cache the layer type here. Element of @lv_intermediate_layer_type_t */ + uint16_t layer_type : 2; /**< Cache the layer type here. Element of lv_intermediate_layer_type_t */ }; struct lv_obj_t { |