refactor: use only uint32_t and int32_t in the widget's API

This commit is contained in:
Gabor Kiss-Vamosi
2023-09-21 13:30:33 +02:00
parent 2b356bf01e
commit 971c533375
43 changed files with 378 additions and 380 deletions

View File

@@ -281,8 +281,6 @@ void test_button_matrix_get_button_text_works(void)
static const char * btn_map[] = {"A", "B", "\n", "C", "D", ""};
lv_buttonmatrix_set_map(btnm, btn_map);
const char * lv_buttonmatrix_get_button_text(const lv_obj_t * obj, uint16_t btn_id);
TEST_ASSERT_EQUAL_STRING("A", lv_buttonmatrix_get_button_text(btnm, 0));
TEST_ASSERT_EQUAL_STRING("B", lv_buttonmatrix_get_button_text(btnm, 1));
TEST_ASSERT_EQUAL_STRING("C", lv_buttonmatrix_get_button_text(btnm, 2));