diff options
author | hjk <[email protected]> | 2025-04-09 10:36:39 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2025-04-10 08:11:05 +0000 |
commit | 6af62f8a66ac3f9e09584d287a738cd1b3116395 (patch) | |
tree | 005836ecfbae4bad5ddf53fd72e71796822a9325 /app/perfkallsyms.h | |
parent | 65ab0ff4a3edcca5eb383e5eb32007fd4bd28947 (diff) |
It's effectively the same in Qt 6, and QList is more direct.
Change-Id: I0f23b765f2f8930a715e378212b9bb4f38fcef54
Reviewed-by: Ulf Hermann <[email protected]>
Diffstat (limited to 'app/perfkallsyms.h')
-rw-r--r-- | app/perfkallsyms.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/perfkallsyms.h b/app/perfkallsyms.h index 38acca8..e140d7a 100644 --- a/app/perfkallsyms.h +++ b/app/perfkallsyms.h @@ -21,7 +21,7 @@ #include <QByteArray> #include <QCoreApplication> -#include <QVector> +#include <QList> struct PerfKallsymEntry { @@ -45,6 +45,6 @@ public: PerfKallsymEntry findEntry(quint64 address) const; private: - QVector<PerfKallsymEntry> m_entries; + QList<PerfKallsymEntry> m_entries; QString m_errorString; }; |