format code

This commit is contained in:
xianjimli 2020-03-03 16:34:14 +08:00
parent d3e0a713b8
commit 8ab5ffd733
2 changed files with 1 additions and 2 deletions

View File

@ -1057,7 +1057,7 @@ ret_t widget_dispatch(widget_t* widget, event_t* e) {
static ret_t widget_dispatch_callback(void* ctx, const void* data) {
widget_t* widget = WIDGET(data);
return widget_dispatch(widget, (event_t*)ctx);
}

View File

@ -573,4 +573,3 @@ ret_t window_manager_dispatch_window_event(widget_t* window, event_type_t type)
return widget_dispatch(window->parent, (event_t*)&(evt));
}