diff options
Diffstat (limited to 'src/widgets/imagebutton/lv_imagebutton_private.h')
-rw-r--r-- | src/widgets/imagebutton/lv_imagebutton_private.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/imagebutton/lv_imagebutton_private.h b/src/widgets/imagebutton/lv_imagebutton_private.h index 8dc5d42b0..d061fd8e5 100644 --- a/src/widgets/imagebutton/lv_imagebutton_private.h +++ b/src/widgets/imagebutton/lv_imagebutton_private.h @@ -31,12 +31,12 @@ struct lv_imagebutton_src_info_t { lv_image_header_t header; }; -/*Data of image button*/ +/** Data of image button */ struct lv_imagebutton_t { lv_obj_t obj; - lv_imagebutton_src_info_t src_mid[LV_IMAGEBUTTON_STATE_NUM]; /*Store center images to each state*/ - lv_imagebutton_src_info_t src_left[LV_IMAGEBUTTON_STATE_NUM]; /*Store left side images to each state*/ - lv_imagebutton_src_info_t src_right[LV_IMAGEBUTTON_STATE_NUM]; /*Store right side images to each state*/ + lv_imagebutton_src_info_t src_mid[LV_IMAGEBUTTON_STATE_NUM]; /**< Store center images to each state */ + lv_imagebutton_src_info_t src_left[LV_IMAGEBUTTON_STATE_NUM]; /**< Store left side images to each state */ + lv_imagebutton_src_info_t src_right[LV_IMAGEBUTTON_STATE_NUM]; /**< Store right side images to each state */ }; |