1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-21 05:18:06 +01:00

fixed directory OPEN_MENU sorting bug and shortcut selection window problems

This commit is contained in:
kojima
1999-09-18 21:17:03 +00:00
parent e230ca4245
commit 5c88136401
6 changed files with 73 additions and 66 deletions

View File

@@ -1270,8 +1270,11 @@ typedef struct {
static int
myCompare(const void *d1, const void *d2)
myCompare(const void **d1, const void **d2)
{
d1 = *d1;
d2 = *d2;
return strcmp(((dir_data*) d1)->name, ((dir_data*) d2)->name);
}