* Draw all widgets, starting with the one given by the parameters. * @param w First widget of the chain to draw. */
| 954 | * @param w First widget of the chain to draw. |
| 955 | */ |
| 956 | void GUI_Widget_DrawAll(Widget *w) |
| 957 | { |
| 958 | while (w != NULL) { |
| 959 | GUI_Widget_Draw(w); |
| 960 | w = GUI_Widget_GetNext(w); |
| 961 | } |
| 962 | } |
no test coverage detected