Changeset 58775d30 in mainline for uspace/lib/gui/window.c
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gui/window.c
r6069061 r58775d30 591 591 } 592 592 593 window_t *window_open(const char *winreg, bool is_main, bool is_decorated,593 window_t *window_open(const char *winreg, window_flags_t flags, 594 594 const char *caption) 595 595 { … … 598 598 return NULL; 599 599 600 win->is_main = is_main;601 win->is_decorated = is_decorated;600 win->is_main = flags & WINDOW_MAIN; 601 win->is_decorated = flags & WINDOW_DECORATED; 602 602 win->is_focused = true; 603 603 prodcons_initialize(&win->events); … … 632 632 service_id_t in_dsid; 633 633 service_id_t out_dsid; 634 rc = win_register(reg_sess, &in_dsid, &out_dsid);634 rc = win_register(reg_sess, flags, &in_dsid, &out_dsid); 635 635 async_hangup(reg_sess); 636 636 if (rc != EOK) {
Note:
See TracChangeset
for help on using the changeset viewer.