Changeset 46a47c0 in mainline for uspace/lib/ui/src/control.c
- Timestamp:
- 2023-01-16T20:34:01Z (2 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b0ae23f
- Parents:
- b3eeae5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/src/control.c
rb3eeae5 r46a47c0 1 1 /* 2 * Copyright (c) 202 1Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 130 130 * 131 131 * @param control Control 132 * @param nfocus Number of remaining foci 132 133 */ 133 void ui_control_unfocus(ui_control_t *control )134 void ui_control_unfocus(ui_control_t *control, unsigned nfocus) 134 135 { 135 136 if (control->ops->unfocus != NULL) 136 control->ops->unfocus(control->ext );137 control->ops->unfocus(control->ext, nfocus); 137 138 } 138 139
Note:
See TracChangeset
for help on using the changeset viewer.