adds a radio button to current group. initial state of radio may be set
| 1999 | |
| 2000 | // adds a radio button to current group. initial state of radio may be set |
| 2001 | int *newuiSheet::AddFirstLongRadioButton(const char *title, int16_t id) { |
| 2002 | newuiSheet::t_gadget_desc *gadget = AddGadget(id, GADGET_LRADIO, title); |
| 2003 | gadget->parm.i = 0; |
| 2004 | return &gadget->parm.i; |
| 2005 | } |
| 2006 | |
| 2007 | // adds a radio button to current group. initial state of radio may be set |
| 2008 | void newuiSheet::AddLongRadioButton(const char *title, int16_t id) { |
no outgoing calls
no test coverage detected