Changes in uspace/lib/gui/window.c [b7fd2a0:38d150e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gui/window.c
rb7fd2a0 r38d150e 163 163 164 164 font_t *font; 165 errno_t rc = embedded_font_create(&font, 16);165 int rc = embedded_font_create(&font, 16); 166 166 if (rc != EOK) { 167 167 window_yield(widget->window); … … 404 404 405 405 /* Inform compositor about new surface. */ 406 errno_t rc = win_resize(win->osess, offset_x, offset_y, width, height,406 int rc = win_resize(win->osess, offset_x, offset_y, width, height, 407 407 placement_flags, surface_direct_access(new_surface)); 408 408 … … 493 493 494 494 /* Window event loop. Runs in own dedicated fibril. */ 495 static errno_t event_loop(void *arg)495 static int event_loop(void *arg) 496 496 { 497 497 bool is_main = false; … … 561 561 562 562 /* Input fetcher from compositor. Runs in own dedicated fibril. */ 563 static errno_t fetch_input(void *arg)564 { 565 errno_t rc;563 static int fetch_input(void *arg) 564 { 565 int rc; 566 566 bool terminate = false; 567 567 window_t *win = (window_t *) arg; … … 618 618 619 619 service_id_t reg_dsid; 620 errno_t rc = loc_service_get_id(winreg, ®_dsid, 0);620 int rc = loc_service_get_id(winreg, ®_dsid, 0); 621 621 if (rc != EOK) { 622 622 free(win); … … 677 677 } 678 678 679 errno_t window_set_caption(window_t *win, const char *caption)679 int window_set_caption(window_t *win, const char *caption) 680 680 { 681 681 char *cap;
Note:
See TracChangeset
for help on using the changeset viewer.