diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-07 11:18:54 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-14 06:30:04 +0200 |
commit | 2afb3e26828a2f97e98537f86d3b747a28847ddd (patch) | |
tree | 97562dd70d90e3a1d1c25f844763f667d09d39b5 /scripts/kconfig/qconf.cc | |
parent | kconfig: qconf: use 'menu' variable for (QMenu *) (diff) | |
download | linux-2afb3e26828a2f97e98537f86d3b747a28847ddd.tar.xz linux-2afb3e26828a2f97e98537f86d3b747a28847ddd.zip |
kconfig: qconf: remove toolBar from ConfigMainWindow members
This pointer is only used in the ConfigMainWindow constructor.
Drop it from the private members.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index e14b2b974199..f2f5875979fe 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1432,7 +1432,7 @@ ConfigMainWindow::ConfigMainWindow(void) setTabOrder(configList, helpText); configList->setFocus(); - toolBar = new QToolBar("Tools", this); + QToolBar *toolBar = new QToolBar("Tools", this); addToolBar(toolBar); backAction = new QAction(QPixmap(xpm_back), "Back", this); |