| 366 | } |
| 367 | |
| 368 | void LInput_SetText(struct LInput* w, const cc_string* text) { |
| 369 | String_Copy(&w->text, text); |
| 370 | LInput_ClampCaret(w); |
| 371 | LBackend_InputUpdate(w); |
| 372 | } |
| 373 | |
| 374 | void LInput_ClearText(struct LInput* w) { |
| 375 | w->text.length = 0; |
no test coverage detected