Skip to content

Commit

Permalink
fix api comments
Browse files Browse the repository at this point in the history
  • Loading branch information
xianjimli committed Dec 23, 2023
1 parent fd59e4a commit da15274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/base/widget_vtable.h
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ ret_t widget_vtable_on_remove_child_by_parent(widget_t* widget, widget_t* child,
* @annotation ["global"]
*
* @param {widget_t*} widget 子类控件对象。
* @param {widget_t*} child 父控件对象。
* @param {widget_t*} parent 父控件对象。
* @param {const widget_vtable_t*} curr_vt 调用类的虚表对象。
*
* @return {ret_t} 返回 RET_OK 表示成功,返回 RET_NOT_IMPL 表示父类不支持该函数,否则表示失败。
Expand All @@ -698,7 +698,7 @@ ret_t widget_vtable_on_attach_parent_by_parent(widget_t* widget, widget_t* paren
* @annotation ["global"]
*
* @param {widget_t*} widget 子类控件对象。
* @param {widget_t*} child 移除父控件对象。
* @param {widget_t*} parent 移除父控件对象。
* @param {const widget_vtable_t*} curr_vt 调用类的虚表对象。
*
* @return {ret_t} 返回 RET_OK 表示成功,返回 RET_NOT_IMPL 表示父类不支持该函数,否则表示失败。
Expand Down

0 comments on commit da15274

Please sign in to comment.