diff options
author | hjk <[email protected]> | 2024-05-14 10:33:01 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2024-05-27 12:38:48 +0000 |
commit | 971938421c66cfdabc19452f97205f130fdabb84 (patch) | |
tree | 109494d3d296003a387f344efab55900169ca939 /src/libs/utils/projectintropage.cpp | |
parent | e9b002ff7e45b821675e5f3e8a259ab572f9dbd3 (diff) |
Use LayoutBuilder V2
This puts the implementation introduced in acf1ecb47fdf into use, after
significant simplifications in the class hierarchy. CRTP is not used
anymore, and the new tag based dispatch is also used for Layout::addItem,
effectively reducing the number of different code paths.
The Lua based settings access is disabled for now.
Change-Id: Idb6d1a25675378757c5267bdb630bcd4c1f52d34
Reviewed-by: Alessandro Portale <[email protected]>
Diffstat (limited to 'src/libs/utils/projectintropage.cpp')
-rw-r--r-- | src/libs/utils/projectintropage.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/utils/projectintropage.cpp b/src/libs/utils/projectintropage.cpp index 1f32cce6bcc..1ec503b7acf 100644 --- a/src/libs/utils/projectintropage.cpp +++ b/src/libs/utils/projectintropage.cpp @@ -110,7 +110,8 @@ ProjectIntroPage::ProjectIntroPage(QWidget *parent) : using namespace Layouting; Form { - Tr::tr("Name:"), d->m_nameLineEdit, br, + Tr::tr("Name:"), d->m_nameLineEdit, + br, d->m_projectLabel, d->m_projectComboBox, br, Column { Space(12) }, br, Tr::tr("Create in:"), d->m_pathChooser, br, |