aboutsummaryrefslogtreecommitdiff
path: root/src/hci/tui/settings_ui.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2024-06-20 15:48:59 -0700
committerMichael Brown <mcb30@ipxe.org>2024-06-21 09:57:03 -0700
commit821bb326f87fbc000376fdc5371e9e53f666267a (patch)
tree90567dcdf2f2db8008779d570f189a2a731263b3 /src/hci/tui/settings_ui.c
parent162cc51b6db2caa888e2fb834511d7e4af7e0bfe (diff)
downloadipxe-821bb326f87fbc000376fdc5371e9e53f666267a.zip
ipxe-821bb326f87fbc000376fdc5371e9e53f666267a.tar.gz
ipxe-821bb326f87fbc000376fdc5371e9e53f666267a.tar.bz2
[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.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c
index bc08750..57ff9e9 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 ) {