* wtools.h: Replaced 0 with LISTBOX_APPEND_AT_END.

This commit is contained in:
Roland Illig 2005-08-15 21:44:41 +00:00
parent 1c607a7414
commit 7152139ad6
2 changed files with 2 additions and 1 deletions

View File

@ -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>

View File

@ -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);