Changeset dc5c303 in mainline for uspace/lib/ui/src/filelist.c
- Timestamp:
- 2023-12-28T13:59:23Z (14 months ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/src/filelist.c
r42c2e65 rdc5c303 46 46 #include <qsort.h> 47 47 #include "../private/filelist.h" 48 #include "../private/list.h" 48 49 #include "../private/resource.h" 49 50 … … 290 291 * @param entry File list entry 291 292 */ 292 void ui_file_list_entry_de lete(ui_file_list_entry_t *entry)293 { 294 ui_list_entry_de lete(entry->entry);293 void ui_file_list_entry_destroy(ui_file_list_entry_t *entry) 294 { 295 ui_list_entry_destroy(entry->entry); 295 296 free(entry->name); 296 297 free(entry); … … 307 308 entry = ui_file_list_first(flist); 308 309 while (entry != NULL) { 309 ui_file_list_entry_de lete(entry);310 ui_file_list_entry_destroy(entry); 310 311 entry = ui_file_list_first(flist); 311 312 }
Note:
See TracChangeset
for help on using the changeset viewer.