ui/common/types.c

changeset 101
7b3a3130be44
parent 95
e92c72705da4
--- a/ui/common/types.c	Thu Dec 12 20:01:43 2024 +0100
+++ b/ui/common/types.c	Mon Jan 06 22:22:55 2025 +0100
@@ -117,7 +117,7 @@
 }
 
 void ui_list_free(UiList *list) {
-    cxListDestroy(list->data);
+    cxListFree(list->data);
     free(list);
 }
 
@@ -213,7 +213,7 @@
         info->titles[i] = c->name;
         i++;
     }
-    cxListDestroy(cols);
+    cxListFree(cols);
     
     return info;
 }

mercurial