Changeset c0757e1f in mainline for uspace/lib/ui/src/filelist.c


Ignore:
Timestamp:
2023-04-19T11:13:06Z (20 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
37087c8
Parents:
ec8ef12
Message:

UI display configuration utility

In addition to the command-line utility 'disp', we introduce its UI
equivalent 'display-cfg'. Currently this allows the user to configure
seats in a very comfortable way.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/src/filelist.c

    rec8ef12 rc0757e1f  
    4646#include <qsort.h>
    4747#include "../private/filelist.h"
     48#include "../private/list.h"
    4849#include "../private/resource.h"
    4950
     
    290291 * @param entry File list entry
    291292 */
    292 void ui_file_list_entry_delete(ui_file_list_entry_t *entry)
    293 {
    294         ui_list_entry_delete(entry->entry);
     293void ui_file_list_entry_destroy(ui_file_list_entry_t *entry)
     294{
     295        ui_list_entry_destroy(entry->entry);
    295296        free(entry->name);
    296297        free(entry);
     
    307308        entry = ui_file_list_first(flist);
    308309        while (entry != NULL) {
    309                 ui_file_list_entry_delete(entry);
     310                ui_file_list_entry_destroy(entry);
    310311                entry = ui_file_list_first(flist);
    311312        }
Note: See TracChangeset for help on using the changeset viewer.