| 1779 | } |
| 1780 | |
| 1781 | void TextInputWidget_Add(void* screen, struct TextInputWidget* w, int width, const cc_string* text, struct MenuInputDesc* d) { |
| 1782 | TextInputWidget_Create(w, width, text, d); |
| 1783 | AddWidget(screen, w); |
| 1784 | } |
| 1785 | |
| 1786 | void TextInputWidget_SetFont(struct TextInputWidget* w, struct FontDesc* font) { |
| 1787 | w->base.font = font; |
no test coverage detected