adds a radio button to current group. initial state of radio may be set
| 1986 | |
| 1987 | // adds a radio button to current group. initial state of radio may be set |
| 1988 | int *newuiSheet::AddFirstRadioButton(const char *title, int16_t id) { |
| 1989 | newuiSheet::t_gadget_desc *gadget = AddGadget(id, GADGET_RADIO, title); |
| 1990 | gadget->parm.i = 0; |
| 1991 | return &gadget->parm.i; |
| 1992 | } |
| 1993 | |
| 1994 | // adds a radio button to current group. initial state of radio may be set |
| 1995 | void newuiSheet::AddRadioButton(const char *title, int16_t id) { |
no outgoing calls
no test coverage detected