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/perfelfmap.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/perfelfmap.h')
-rw-r--r-- | app/perfelfmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/perfelfmap.h b/app/perfelfmap.h index 01ba722..de1d478 100644 --- a/app/perfelfmap.h +++ b/app/perfelfmap.h @@ -21,7 +21,7 @@ #pragma once #include <QFileInfo> -#include <QVector> +#include <QList> #include <limits> class PerfElfMap : public QObject @@ -117,7 +117,7 @@ signals: private: // elf sorted by start address - QVector<ElfInfo> m_elfs; + QList<ElfInfo> m_elfs; // last registered elf with zero pgoff ElfInfo m_lastBase; }; |