Commit 68fd110b authored by Masahiro Yamada's avatar Masahiro Yamada

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: default avatarMasahiro Yamada <masahiroy@kernel.org>
parent 53efe2e7
...@@ -1106,11 +1106,6 @@ void ConfigInfoView::menuInfo(void) ...@@ -1106,11 +1106,6 @@ void ConfigInfoView::menuInfo(void)
if (showDebug()) if (showDebug())
debug = debug_info(sym); debug = debug_info(sym);
struct gstr help_gstr = str_new();
menu_get_ext_help(_menu, &help_gstr);
help = print_filter(str_get(&help_gstr));
str_free(&help_gstr);
} else if (_menu->prompt) { } else if (_menu->prompt) {
head += "<big><b>"; head += "<big><b>";
head += print_filter(_menu->prompt->text); head += print_filter(_menu->prompt->text);
...@@ -1126,7 +1121,7 @@ void ConfigInfoView::menuInfo(void) ...@@ -1126,7 +1121,7 @@ void ConfigInfoView::menuInfo(void)
if (showDebug()) if (showDebug())
debug += QString().sprintf("defined at %s:%d<br><br>", _menu->file->name, _menu->lineno); debug += QString().sprintf("defined at %s:%d<br><br>", _menu->file->name, _menu->lineno);
setText(head + debug + help); setText(head + debug);
} }
QString ConfigInfoView::debug_info(struct symbol *sym) QString ConfigInfoView::debug_info(struct symbol *sym)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment