mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-21 06:53:01 +08:00
Replace * by [] to pass array argument
As discussed on #935 https://github.com/littlevgl/lvgl/issues/935#issuecomment-481550697
This commit is contained in:
parent
6bde219324
commit
2c7cdea1ee
@ -200,7 +200,7 @@ void lv_chart_init_points(lv_obj_t * chart, lv_chart_series_t * ser, lv_coord_t
|
|||||||
* @param ser pointer to a data series on 'chart'
|
* @param ser pointer to a data series on 'chart'
|
||||||
* @param y_array array of 'lv_coord_t' points (with 'points count' elements )
|
* @param y_array array of 'lv_coord_t' points (with 'points count' elements )
|
||||||
*/
|
*/
|
||||||
void lv_chart_set_points(lv_obj_t * chart, lv_chart_series_t * ser, lv_coord_t * y_array);
|
void lv_chart_set_points(lv_obj_t * chart, lv_chart_series_t * ser, lv_coord_t y_array[]);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shift all data right and set the most right data on a data line
|
* Shift all data right and set the most right data on a data line
|
||||||
|
@ -106,7 +106,7 @@ lv_obj_t * lv_line_create(lv_obj_t * par, const lv_obj_t * copy)
|
|||||||
* so the array can NOT be a local variable which will be destroyed
|
* so the array can NOT be a local variable which will be destroyed
|
||||||
* @param point_num number of points in 'point_a'
|
* @param point_num number of points in 'point_a'
|
||||||
*/
|
*/
|
||||||
void lv_line_set_points(lv_obj_t * line, const lv_point_t * point_a, uint16_t point_num)
|
void lv_line_set_points(lv_obj_t * line, const lv_point_t point_a[], uint16_t point_num)
|
||||||
{
|
{
|
||||||
lv_line_ext_t * ext = lv_obj_get_ext_attr(line);
|
lv_line_ext_t * ext = lv_obj_get_ext_attr(line);
|
||||||
ext->point_array = point_a;
|
ext->point_array = point_a;
|
||||||
|
@ -63,7 +63,7 @@ lv_obj_t * lv_line_create(lv_obj_t * par, const lv_obj_t * copy);
|
|||||||
* so the array can NOT be a local variable which will be destroyed
|
* so the array can NOT be a local variable which will be destroyed
|
||||||
* @param point_num number of points in 'point_a'
|
* @param point_num number of points in 'point_a'
|
||||||
*/
|
*/
|
||||||
void lv_line_set_points(lv_obj_t * line, const lv_point_t * point_a, uint16_t point_num);
|
void lv_line_set_points(lv_obj_t * line, const lv_point_t point_a[], uint16_t point_num);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Enable (or disable) the auto-size option. The size of the object will fit to its points.
|
* Enable (or disable) the auto-size option. The size of the object will fit to its points.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user