diff options
author | Michael Brown <mcb30@ipxe.org> | 2024-06-20 15:48:59 -0700 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2024-06-21 09:57:03 -0700 |
commit | 821bb326f87fbc000376fdc5371e9e53f666267a (patch) | |
tree | 90567dcdf2f2db8008779d570f189a2a731263b3 /src/hci/tui/settings_ui.c | |
parent | 162cc51b6db2caa888e2fb834511d7e4af7e0bfe (diff) | |
download | ipxe-821bb326f87fbc000376fdc5371e9e53f666267a.tar.gz |
[hci] Remove the generalised widget user interface abstraction
Remove the now-unused generalised text widget user interface, along
with the associated concept of a widget set and the implementation of
a read-only label widget.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci/tui/settings_ui.c')
-rw-r--r-- | src/hci/tui/settings_ui.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c index bc08750a0..57ff9e9a0 100644 --- a/src/hci/tui/settings_ui.c +++ b/src/hci/tui/settings_ui.c @@ -109,8 +109,6 @@ struct settings_ui { struct jump_scroller scroll; /** Current row */ struct settings_ui_row row; - /** Widget set used for editing setting */ - struct widgets widgets; }; /** @@ -389,7 +387,6 @@ static int main_loop ( struct settings *settings ) { /* Print initial screen content */ color_set ( CPAIR_NORMAL, NULL ); memset ( &ui, 0, sizeof ( ui ) ); - init_widgets ( &ui.widgets ); select_settings ( &ui, settings ); while ( 1 ) { |