Skip to content

Commit 68fd110

Browse files
committed
kconfig: qconf: remove redundant help in the info view
The same information is repeated in the info view. Remove the second one. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 53efe2e commit 68fd110

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/kconfig/qconf.cc

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,11 +1106,6 @@ void ConfigInfoView::menuInfo(void)
11061106

11071107
if (showDebug())
11081108
debug = debug_info(sym);
1109-
1110-
struct gstr help_gstr = str_new();
1111-
menu_get_ext_help(_menu, &help_gstr);
1112-
help = print_filter(str_get(&help_gstr));
1113-
str_free(&help_gstr);
11141109
} else if (_menu->prompt) {
11151110
head += "<big><b>";
11161111
head += print_filter(_menu->prompt->text);
@@ -1126,7 +1121,7 @@ void ConfigInfoView::menuInfo(void)
11261121
if (showDebug())
11271122
debug += QString().sprintf("defined at %s:%d<br><br>", _menu->file->name, _menu->lineno);
11281123

1129-
setText(head + debug + help);
1124+
setText(head + debug);
11301125
}
11311126

11321127
QString ConfigInfoView::debug_info(struct symbol *sym)

0 commit comments

Comments
 (0)