From: Masahiro Yamada <masahiroy@kernel.org>
To: linux-kbuild@vger.kernel.org
Cc: Masahiro Yamada <masahiroy@kernel.org>, linux-kernel@vger.kernel.org
Subject: [PATCH 3/3] kconfig: qconf: set parent in the widget constructor
Date: Wed, 9 Oct 2024 03:00:08 +0900 [thread overview]
Message-ID: <20241008180202.2315986-3-masahiroy@kernel.org> (raw)
In-Reply-To: <20241008180202.2315986-1-masahiroy@kernel.org>
The ->addWidget() method re-parents the widget. The parent QWidget can
be specified directly in the constructor.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---
scripts/kconfig/qconf.cc | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc
index 2c80e3e1a91a..7bac48ac5d21 100644
--- a/scripts/kconfig/qconf.cc
+++ b/scripts/kconfig/qconf.cc
@@ -1348,18 +1348,14 @@ ConfigMainWindow::ConfigMainWindow(void)
layout->addWidget(split2);
split2->setChildrenCollapsible(false);
- split1 = new QSplitter(Qt::Horizontal, widget);
- split2->addWidget(split1);
+ split1 = new QSplitter(Qt::Horizontal, split2);
split1->setChildrenCollapsible(false);
- configList = new ConfigList(widget, "config");
- split1->addWidget(configList);
+ configList = new ConfigList(split1, "config");
- menuList = new ConfigList(widget, "menu");
- split1->addWidget(menuList);
+ menuList = new ConfigList(split1, "menu");
- helpText = new ConfigInfoView(widget, "help");
- split2->addWidget(helpText);
+ helpText = new ConfigInfoView(split2, "help");
setTabOrder(configList, helpText);
configList->setFocus();
--
2.43.0
prev parent reply other threads:[~2024-10-08 18:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-08 18:00 [PATCH 1/3] kconfig: qconf: set QSplitter orientation in the constructor Masahiro Yamada
2024-10-08 18:00 ` [PATCH 2/3] kconfig: qconf: reorder code in ConfigMainWindow() constructor Masahiro Yamada
2024-10-08 18:00 ` Masahiro Yamada [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241008180202.2315986-3-masahiroy@kernel.org \
--to=masahiroy@kernel.org \
--cc=linux-kbuild@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox