* hotlist.c (l_call): Fix incorrect calls to hotlist_callback().

This commit is contained in:
Pavel Roskin 2003-09-13 00:12:37 +00:00
parent c0b34498dd
commit a48fa9fa8d
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
2003-09-12 Pavel Roskin <proski@gnu.org>
* hotlist.c (l_call): Fix incorrect calls to hotlist_callback().
* dlg.h: Merge Widget_Item into Widget. Massive adjustment.
* main.c (setup_panels_and_run_mc): Use straight widget order in

View File

@ -492,7 +492,7 @@ static int l_call (WListbox *list)
return LISTBOX_DONE;
} else {
hotlist_button_callback (B_ENTER);
hotlist_callback (dlg, '\n', DLG_POST_KEY);
hotlist_callback (dlg, DLG_POST_KEY, '\n');
return LISTBOX_CONT;
}
} else {
@ -503,7 +503,7 @@ static int l_call (WListbox *list)
}
hotlist_button_callback (B_UP_GROUP);
hotlist_callback (dlg, 'u', DLG_POST_KEY);
hotlist_callback (dlg, DLG_POST_KEY, 'u');
return LISTBOX_CONT;
}