Changeset dc0f6e4c in mainline for uspace/lib/ui/src/window.c
- Timestamp:
- 2023-10-24T16:50:46Z (17 months ago)
- Parents:
- 29ed06d
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-22 20:38:41)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-24 16:50:46)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/src/window.c
r29ed06d rdc0f6e4c 86 86 static void wd_close(ui_wdecor_t *, void *); 87 87 static void wd_move(ui_wdecor_t *, void *, gfx_coord2_t *, sysarg_t); 88 static void wd_resize(ui_wdecor_t *, void *, ui_wdecor_rsztype_t,88 static void wd_resize(ui_wdecor_t *, void *, display_wnd_rsztype_t, 89 89 gfx_coord2_t *, sysarg_t); 90 90 static void wd_set_cursor(ui_wdecor_t *, void *, ui_stock_cursor_t); … … 1191 1191 */ 1192 1192 static void wd_resize(ui_wdecor_t *wdecor, void *arg, 1193 ui_wdecor_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id)1193 display_wnd_rsztype_t rsztype, gfx_coord2_t *pos, sysarg_t pos_id) 1194 1194 { 1195 1195 ui_window_t *window = (ui_window_t *) arg; 1196 1196 1197 1197 if (window->dwindow != NULL) { 1198 (void) display_window_resize_req(window->dwindow, 1199 (display_wnd_rsztype_t) rsztype, // Same constants in the enums 1198 (void) display_window_resize_req(window->dwindow, rsztype, 1200 1199 pos, pos_id); 1201 1200 }
Note:
See TracChangeset
for help on using the changeset viewer.