Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/src/control.c

    r46a47c0 r7481ee19  
    11/*
    2  * Copyright (c) 2023 Jiri Svoboda
     2 * Copyright (c) 2021 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    130130 *
    131131 * @param control Control
    132  * @param nfocus Number of remaining foci
    133132 */
    134 void ui_control_unfocus(ui_control_t *control, unsigned nfocus)
     133void ui_control_unfocus(ui_control_t *control)
    135134{
    136135        if (control->ops->unfocus != NULL)
    137                 control->ops->unfocus(control->ext, nfocus);
     136                control->ops->unfocus(control->ext);
    138137}
    139138
Note: See TracChangeset for help on using the changeset viewer.