projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
572cd1d
)
kconfig: qconf: remove redundant check in goBack()
author
Masahiro Yamada
<masahiroy@kernel.org>
Wed, 23 Oct 2024 18:17:59 +0000
(
03:17
+0900)
committer
Masahiro Yamada
<masahiroy@kernel.org>
Tue, 5 Nov 2024 23:46:34 +0000
(08:46 +0900)
The same check is performed in the configList->setParentMenu() call.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/kconfig/qconf.cc
patch
|
blob
|
history
diff --git
a/scripts/kconfig/qconf.cc
b/scripts/kconfig/qconf.cc
index
1948cda
..
acbc433
100644
(file)
--- a/
scripts/kconfig/qconf.cc
+++ b/
scripts/kconfig/qconf.cc
@@
-1616,9
+1616,6
@@
void ConfigMainWindow::listFocusChanged(void)
void ConfigMainWindow::goBack(void)
{
- if (configList->rootEntry == &rootmenu)
- return;
-
configList->setParentMenu();
}