Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/display/window.c

    r1215db9 r90f1f19  
    5353static void ds_window_get_preview_rect(ds_window_t *, gfx_rect_t *);
    5454
    55 static mem_gc_cb_t ds_window_mem_gc_cb = {
    56         .invalidate = ds_window_invalidate_cb,
    57         .update = ds_window_update_cb
    58 };
    59 
    6055/** Create window.
    6156 *
     
    113108        }
    114109
    115         rc = mem_gc_create(&params->rect, &alloc, &ds_window_mem_gc_cb,
    116             (void *)wnd, &wnd->mgc);
     110        rc = mem_gc_create(&params->rect, &alloc, ds_window_invalidate_cb,
     111            ds_window_update_cb, (void *)wnd, &wnd->mgc);
    117112        if (rc != EOK)
    118113                goto error;
Note: See TracChangeset for help on using the changeset viewer.