diff options
| author | Sérgio Martins <[email protected]> | 2015-06-01 14:05:41 +0100 |
|---|---|---|
| committer | Sérgio Martins <[email protected]> | 2015-06-29 19:31:59 +0000 |
| commit | 20147fae60fd062788c51b058ebb70b33d7fd664 (patch) | |
| tree | e677f42184ea22f1af510814d11f7afdd6fd027f /src/widgets/dialogs/qwizard.cpp | |
| parent | 29e88fd8f066c14a405a52bbfe3715dc3e5e891f (diff) | |
Use QVector::reserve() all over the place.
Reduces internal memory fragmentation.
The search criteria was:
QVector::append(), QVector::push_back(), QVector::operator<<()
and QVector::operator+=() calls inside for, do and while loops.
Statements inside ifs and out of loops weren't considered.
Change-Id: Ie5aaf3cdfac938994e6e5dfa5f51de501ed79a0c
Reviewed-by: Marc Mutz <[email protected]>
Diffstat (limited to 'src/widgets/dialogs/qwizard.cpp')
| -rw-r--r-- | src/widgets/dialogs/qwizard.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/widgets/dialogs/qwizard.cpp b/src/widgets/dialogs/qwizard.cpp index bf3e44b6a69..974d6f73fdf 100644 --- a/src/widgets/dialogs/qwizard.cpp +++ b/src/widgets/dialogs/qwizard.cpp @@ -751,6 +751,7 @@ void QWizardPrivate::init() updateButtonLayout(); + defaultPropertyTable.reserve(NFallbackDefaultProperties); for (uint i = 0; i < NFallbackDefaultProperties; ++i) defaultPropertyTable.append(QWizardDefaultProperty(fallbackProperties[i].className, fallbackProperties[i].property, |
