1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-15 05:25:53 +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

@@ -442,9 +442,9 @@ WMSortBrowserColumn(WMBrowser *bPtr, int column)
void
WMSortBrowserColumnWithComparer(WMBrowser *bPtr, int column,
int (f)(const void*, const void*))
WMCompareDataProc *func)
{
WMSortListItemsWithComparer(bPtr->columns[column], f);
WMSortListItemsWithComparer(bPtr->columns[column], func);
}