lkml.org 
[lkml]   [2020]   [Aug]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 04/16] kconfig: qconf: overload addToolBar() to create and insert toolbar
    Date
    Use the overloaded function, addToolBar(const QString &title)
    to create a QToolBar object, setting its window title, and inserts
    it into the toolbar area.

    Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
    ---

    scripts/kconfig/qconf.cc | 4 +---
    1 file changed, 1 insertion(+), 3 deletions(-)

    diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc
    index 4eb846c90b1d..e17c46bb75e8 100644
    --- a/scripts/kconfig/qconf.cc
    +++ b/scripts/kconfig/qconf.cc
    @@ -1431,9 +1431,6 @@ ConfigMainWindow::ConfigMainWindow(void)
    setTabOrder(configList, helpText);
    configList->setFocus();

    - QToolBar *toolBar = new QToolBar("Tools", this);
    - addToolBar(toolBar);
    -
    backAction = new QAction(QPixmap(xpm_back), "Back", this);
    connect(backAction, SIGNAL(triggered(bool)), SLOT(goBack()));

    @@ -1506,6 +1503,7 @@ ConfigMainWindow::ConfigMainWindow(void)
    connect(showAboutAction, SIGNAL(triggered(bool)), SLOT(showAbout()));

    // init tool bar
    + QToolBar *toolBar = addToolBar("Tools");
    toolBar->addAction(backAction);
    toolBar->addSeparator();
    toolBar->addAction(loadAction);
    --
    2.25.1
    \
     
     \ /
      Last update: 2020-08-02 18:19    [W:3.293 / U:0.032 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site