chore(tabview) fix format.

This commit is contained in:
pete-pjb
2022-06-13 13:04:44 +01:00
parent 11b708ed95
commit 3e56e96922
2 changed files with 2 additions and 2 deletions

View File

@@ -121,7 +121,7 @@ lv_obj_t * lv_tabview_add_tab(lv_obj_t * obj, const char * name)
return page;
}
void lv_tabview_rename_tab(lv_obj_t *obj, uint32_t id, const char *new_name)
void lv_tabview_rename_tab(lv_obj_t *obj, uint32_t id, const char * new_name)
{
LV_ASSERT_OBJ(obj, MY_CLASS);
lv_tabview_t * tabview = (lv_tabview_t *)obj;

View File

@@ -42,7 +42,7 @@ lv_obj_t * lv_tabview_create(lv_obj_t * parent, lv_dir_t tab_pos, lv_coord_t tab
lv_obj_t * lv_tabview_add_tab(lv_obj_t * tv, const char * name);
void lv_tabview_rename_tab(lv_obj_t *obj, uint32_t tab_id, const char *new_name);
void lv_tabview_rename_tab(lv_obj_t *obj, uint32_t tab_id, const char * new_name);
lv_obj_t * lv_tabview_get_content(lv_obj_t * tv);