diff options
Diffstat (limited to 'scripts/kconfig/lxdialog/dialog.h')
-rw-r--r-- | scripts/kconfig/lxdialog/dialog.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/scripts/kconfig/lxdialog/dialog.h b/scripts/kconfig/lxdialog/dialog.h index f882204cb3c2..af3cf716e215 100644 --- a/scripts/kconfig/lxdialog/dialog.h +++ b/scripts/kconfig/lxdialog/dialog.h | |||
@@ -160,7 +160,7 @@ int dialog_menu(const char *title, const char *prompt, int height, int width, | |||
160 | const char *const *items); | 160 | const char *const *items); |
161 | int dialog_checklist(const char *title, const char *prompt, int height, | 161 | int dialog_checklist(const char *title, const char *prompt, int height, |
162 | int width, int list_height, int item_no, | 162 | int width, int list_height, int item_no, |
163 | const char *const *items, int flag); | 163 | const char *const *items); |
164 | extern char dialog_input_result[]; | 164 | extern char dialog_input_result[]; |
165 | int dialog_inputbox(const char *title, const char *prompt, int height, | 165 | int dialog_inputbox(const char *title, const char *prompt, int height, |
166 | int width, const char *init); | 166 | int width, const char *init); |
@@ -175,10 +175,3 @@ int dialog_inputbox(const char *title, const char *prompt, int height, | |||
175 | * -- uppercase chars are used to invoke the button (M_EVENT + 'O') | 175 | * -- uppercase chars are used to invoke the button (M_EVENT + 'O') |
176 | */ | 176 | */ |
177 | #define M_EVENT (KEY_MAX+1) | 177 | #define M_EVENT (KEY_MAX+1) |
178 | |||
179 | /* | ||
180 | * The `flag' parameter in checklist is used to select between | ||
181 | * radiolist and checklist | ||
182 | */ | ||
183 | #define FLAG_CHECK 1 | ||
184 | #define FLAG_RADIO 0 | ||