fix curses' create_nhmenu() warning

The extra flags argument to create_nhmenu() wasn't propagated to
anywhere useful.  It still doesn't do anything yet.
This commit is contained in:
PatR
2020-02-25 16:18:58 -08:00
parent 19df82971d
commit cff63b5b4c
6 changed files with 9 additions and 6 deletions

View File

@@ -173,7 +173,7 @@ extern void curses_line_input_dialog(const char *prompt,
extern int curses_character_input_dialog(const char *prompt,
const char *choices, CHAR_P def);
extern int curses_ext_cmd(void);
extern void curses_create_nhmenu(winid wid);
extern void curses_create_nhmenu(winid wid, unsigned long);
extern void curses_add_nhmenu_item(winid wid, int glyph,
const ANY_P *identifier, CHAR_P accelerator,
CHAR_P group_accel, int attr,