Changeset cc90846 in mainline for uspace/srv/hid/display/window.c
- Timestamp:
- 2020-01-27T13:07:17Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f5191b4
- Parents:
- 01c2759
- git-author:
- Jiri Svoboda <jiri@…> (2020-01-26 18:07:01)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-01-27 13:07:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/window.c
r01c2759 rcc90846 329 329 void ds_window_destroy(ds_window_t *wnd) 330 330 { 331 ds_display_t *disp; 332 333 disp = wnd->display; 334 331 335 ds_client_remove_window(wnd); 332 336 ds_display_remove_window(wnd); 337 333 338 (void) gfx_context_delete(wnd->gc); 334 339 if (wnd->bitmap != NULL) … … 336 341 337 342 free(wnd); 343 344 (void) ds_display_paint(disp, NULL); 338 345 } 339 346
Note:
See TracChangeset
for help on using the changeset viewer.