Changeset 4df6607 in mainline for uspace/lib/ui/src/control.c


Ignore:
Timestamp:
2020-11-01T18:37:09Z (5 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c6f00b40
Parents:
8009dc27
Message:

Paint controls via layout

File:
1 edited

Legend:

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

    r8009dc27 r4df6607  
    7474}
    7575
     76/** Paint UI control.
     77 *
     78 * @param control Push button
     79 * @return EOK on success or an error code
     80 */
     81errno_t ui_control_paint(ui_control_t *control)
     82{
     83        return control->ops->paint(control->ext);
     84}
     85
    7686/** Deliver position event to UI control.
    7787 *
Note: See TracChangeset for help on using the changeset viewer.