mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-10 21:42:00 +03:00
* wtools.h: Replaced 0 with LISTBOX_APPEND_AT_END.
This commit is contained in:
parent
1c607a7414
commit
7152139ad6
@ -11,6 +11,7 @@
|
||||
of the next line.
|
||||
* dialog.h (struct Dlg_head): Changed the bit fields of length one
|
||||
from signed int to unsigned int.
|
||||
* wtools.h: Replaced 0 with LISTBOX_APPEND_AT_END.
|
||||
|
||||
2005-08-15 Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>
|
||||
|
||||
|
@ -11,7 +11,7 @@ typedef struct {
|
||||
/* Listbox utility functions */
|
||||
Listbox *create_listbox_window (int cols, int lines, const char *title, const char *help);
|
||||
#define LISTBOX_APPEND_TEXT(l,h,t,d) \
|
||||
listbox_add_item (l->list, 0, h, t, d)
|
||||
listbox_add_item (l->list, LISTBOX_APPEND_AT_END, h, t, d)
|
||||
|
||||
int run_listbox (Listbox *l);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user