diff options
author | Alessandro Portale <[email protected]> | 2023-05-05 12:33:31 +0200 |
---|---|---|
committer | Alessandro Portale <[email protected]> | 2023-05-10 11:14:10 +0000 |
commit | 9c31267e58625ba804379e32a167985f1ed00763 (patch) | |
tree | 01a68b4820ae9f3e780acbce6935faf3051aabb9 /src/libs/utils/projectintropage.cpp | |
parent | 2196e082958c97e4a39be93b3b12c237bf792cb2 (diff) |
Remove ineffective resize() calls
This removes apparently unnecessary resize() calls on QWidgets based
forms which get anyways added to layouts and resized. Most of these size
values looked "accidental", i.e. neither divisible by 2 nor by 5, in
most cases a remnant from the ui inlining.
Change-Id: I95da3b93f2915ef955b5235e5c2ecc94b51f813a
Reviewed-by: <[email protected]>
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/libs/utils/projectintropage.cpp')
-rw-r--r-- | src/libs/utils/projectintropage.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libs/utils/projectintropage.cpp b/src/libs/utils/projectintropage.cpp index 8df64b97f06..cb7018943d1 100644 --- a/src/libs/utils/projectintropage.cpp +++ b/src/libs/utils/projectintropage.cpp @@ -66,7 +66,6 @@ ProjectIntroPage::ProjectIntroPage(QWidget *parent) : WizardPage(parent), d(new ProjectIntroPagePrivate) { - resize(355, 289); setTitle(Tr::tr("Introduction and Project Location")); d->m_descriptionLabel = new QLabel(this); |