ui/common/types.c

branch
newapi
changeset 251
22dc0b739dd8
parent 248
22257f5f4019
--- a/ui/common/types.c	Sun Feb 11 12:29:30 2024 +0100
+++ b/ui/common/types.c	Sun Feb 11 13:59:40 2024 +0100
@@ -150,6 +150,10 @@
     cxListInsert(list->data, 0, data);
 }
 
+void ui_list_remove(UiList *list, int i) {
+    cxListRemove(list->data, i);
+}
+
 void ui_list_clear(UiList *list) {
     cxListClear(list->data);
 }

mercurial