1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-14 12:55:47 +01:00

replaced linked list with WMBag in WMList

replaced WMAddSorted*** with WMSort***
fixed crash bug in icon chooser
This commit is contained in:
kojima
1999-10-03 03:47:21 +00:00
parent e2dba622bf
commit e82c30b205
14 changed files with 316 additions and 391 deletions

View File

@@ -748,12 +748,13 @@ listFamilies(WMScreen *scr, WMFontPanel *panel)
strcat(buffer, fam->encoding);
strcat(buffer, ")");
}
item = WMAddSortedListItem(panel->famLs, buffer);
item = WMAddListItem(panel->famLs, buffer);
item->clientData = fam;
}
WMFreeBag(bag);
}
WMSortListItems(panel->famLs);
WMFreeHashTable(families);
}