kconfig: qconf: omit parent to QHBoxLayout()
Instead of passing 0 (i.e. nullptr), leave it empty. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
740fdef853
commit
92641154bf
@ -1297,7 +1297,8 @@ ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow *parent)
|
||||
QVBoxLayout* layout1 = new QVBoxLayout(this);
|
||||
layout1->setContentsMargins(11, 11, 11, 11);
|
||||
layout1->setSpacing(6);
|
||||
QHBoxLayout* layout2 = new QHBoxLayout(0);
|
||||
|
||||
QHBoxLayout* layout2 = new QHBoxLayout();
|
||||
layout2->setContentsMargins(0, 0, 0, 0);
|
||||
layout2->setSpacing(6);
|
||||
layout2->addWidget(new QLabel("Find:", this));
|
||||
|
Loading…
Reference in New Issue
Block a user