1
1

* wtools.h: Replaced 0 with LISTBOX_APPEND_AT_END.

Этот коммит содержится в:
Roland Illig 2005-08-15 21:44:41 +00:00
родитель 1c607a7414
Коммит 7152139ad6
2 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

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