Changeset a6492460 in mainline for uspace/app/taskbar/wndlist.c
- Timestamp:
- 2022-11-09T16:17:59Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 88d828e
- Parents:
- 54593f3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskbar/wndlist.c
r54593f3 ra6492460 448 448 * 449 449 * @param pbutton Push button 450 * @param arg Argument (w dnlist_entry_t *)450 * @param arg Argument (wndlist_entry_t *) 451 451 */ 452 452 static void wndlist_button_clicked(ui_pbutton_t *pbutton, void *arg) 453 453 { 454 454 wndlist_entry_t *entry = (wndlist_entry_t *)arg; 455 sysarg_t seat_id; 456 457 seat_id = 0; // TODO Multi-seat 455 sysarg_t dev_id; 456 457 /* ID of device that clicked the button */ 458 dev_id = entry->wndlist->ev_pos_id; 458 459 459 460 (void) wndmgt_activate_window(entry->wndlist->wndmgt, 460 seat_id, entry->wnd_id);461 dev_id, entry->wnd_id); 461 462 } 462 463
Note:
See TracChangeset
for help on using the changeset viewer.