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

Merge branch 'dev-7.0' of https://github.com/littlevgl/lvgl into dev-7.0

This commit is contained in:
Gabor Kiss-Vamosi 2020-04-29 08:30:40 +02:00
commit f9cde8e034
2 changed files with 2 additions and 2 deletions

View File

@ -272,7 +272,7 @@ void lv_style_list_add_style(lv_style_list_t * list, lv_style_t * style);
* @param style_list pointer to a style list * @param style_list pointer to a style list
* @param style pointer to a style to remove * @param style pointer to a style to remove
*/ */
void lv_style_list_remove_style(lv_style_list_t *, lv_style_t *); void lv_style_list_remove_style(lv_style_list_t * list, lv_style_t * style);
/** /**
* Remove all styles added from style list, clear the local style, transition style and free all allocated memories. * Remove all styles added from style list, clear the local style, transition style and free all allocated memories.

View File

@ -35,7 +35,7 @@ extern "C" {
* TYPEDEFS * TYPEDEFS
**********************/ **********************/
typedef void (*lv_gauge_format_cb_t)(lv_obj_t * gauge, char buf[], int bufsize, int32_t value); typedef void (*lv_gauge_format_cb_t)(lv_obj_t * gauge, char * buf, int bufsize, int32_t value);
/*Data of gauge*/ /*Data of gauge*/
typedef struct { typedef struct {