| 1273 | } |
| 1274 | |
| 1275 | void InputWidget_AppendText(struct InputWidget* w, const cc_string* text) { |
| 1276 | int appended = InputWidget_DoAppendText(w, text); |
| 1277 | if (appended) InputWidget_UpdateText(w); |
| 1278 | } |
| 1279 | |
| 1280 | void InputWidget_Append(struct InputWidget* w, char c) { |
| 1281 | if (!InputWidget_TryAppendChar(w, c)) return; |
no test coverage detected