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>
This commit is contained in:
@@ -1432,7 +1432,7 @@ ConfigMainWindow::ConfigMainWindow(void)
|
|||||||
setTabOrder(configList, helpText);
|
setTabOrder(configList, helpText);
|
||||||
configList->setFocus();
|
configList->setFocus();
|
||||||
|
|
||||||
toolBar = new QToolBar("Tools", this);
|
QToolBar *toolBar = new QToolBar("Tools", this);
|
||||||
addToolBar(toolBar);
|
addToolBar(toolBar);
|
||||||
|
|
||||||
backAction = new QAction(QPixmap(xpm_back), "Back", this);
|
backAction = new QAction(QPixmap(xpm_back), "Back", this);
|
||||||
|
@@ -326,7 +326,6 @@ protected:
|
|||||||
ConfigView *configView;
|
ConfigView *configView;
|
||||||
ConfigList *configList;
|
ConfigList *configList;
|
||||||
ConfigInfoView *helpText;
|
ConfigInfoView *helpText;
|
||||||
QToolBar *toolBar;
|
|
||||||
QAction *backAction;
|
QAction *backAction;
|
||||||
QAction *singleViewAction;
|
QAction *singleViewAction;
|
||||||
QAction *splitViewAction;
|
QAction *splitViewAction;
|
||||||
|
Reference in New Issue
Block a user