| 66 | static bool s_widgetReset; /*!< If true, the widgets will be redrawn. */ |
| 67 | |
| 68 | Widget *GUI_Widget_GetNext(Widget *w) |
| 69 | { |
| 70 | if (w->next == NULL) return NULL; |
| 71 | return w->next; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Find an existing Widget by the index number. It matches the first hit, and |
no outgoing calls
no test coverage detected