Changeset 879d7245 in mainline
- Timestamp:
- 2019-11-30T00:00:51Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 94635b30
- Parents:
- fd777a2
- Location:
- uspace/srv/hid/display
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/client.c
rfd777a2 r879d7245 113 113 114 114 /* Make sure window is no longer focused in any seat */ 115 seat = ds_display_first_seat(wnd-> client->display);115 seat = ds_display_first_seat(wnd->display); 116 116 while (seat != NULL) { 117 117 ds_seat_evac_focus(seat, wnd); -
uspace/srv/hid/display/window.c
rfd777a2 r879d7245 77 77 ds_window_t *wnd = (ds_window_t *) arg; 78 78 79 log_msg(LOG_DEFAULT, LVL_NOTE, "gc_set_color gc=%p", wnd-> client->display->gc);80 return gfx_set_color(wnd-> client->display->gc, color);79 log_msg(LOG_DEFAULT, LVL_NOTE, "gc_set_color gc=%p", wnd->display->gc); 80 return gfx_set_color(wnd->display->gc, color); 81 81 } 82 82 … … 95 95 log_msg(LOG_DEFAULT, LVL_NOTE, "gc_fill_rect"); 96 96 gfx_rect_translate(&wnd->dpos, rect, &drect); 97 return gfx_fill_rect(wnd-> client->display->gc, &drect);97 return gfx_fill_rect(wnd->display->gc, &drect); 98 98 } 99 99 … … 117 117 return ENOMEM; 118 118 119 rc = gfx_bitmap_create(wnd-> client->display->gc, params, alloc,119 rc = gfx_bitmap_create(wnd->display->gc, params, alloc, 120 120 &cbm->bitmap); 121 121 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.