1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-18 15:35:55 +01:00

Small bugfix, and more updates to typedef'ed functions.

This commit is contained in:
dan
2000-09-25 02:00:55 +00:00
parent 23ac6cc088
commit 7f74ea8081
3 changed files with 6 additions and 7 deletions

View File

@@ -152,9 +152,9 @@ WMSortListItems(WMList *lPtr)
void
WMSortListItemsWithComparer(WMList *lPtr, int (f)(const void*, const void*))
WMSortListItemsWithComparer(WMList *lPtr, WMCompareDataProc *func)
{
WMSortArray(lPtr->items, f);
WMSortArray(lPtr->items, func);
paintList(lPtr);
}