ValgrindPlugin: Use QList instead of QVector

Change-Id: Ib1bd223b73d1f7399008f91a3c26ff515ab03a0c
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Jarek Kobus
2023-08-05 10:55:52 +02:00
parent 00a34e60fc
commit fbf9325395
33 changed files with 137 additions and 139 deletions

View File

@@ -3,8 +3,8 @@
#pragma once
#include <QList>
#include <QSharedDataPointer>
#include <QVector>
namespace Valgrind {
namespace XmlProtocol {
@@ -24,8 +24,8 @@ public:
QString auxWhat() const;
void setAuxWhat(const QString &auxwhat);
QVector<Frame> frames() const;
void setFrames(const QVector<Frame> &frames);
QList<Frame> frames() const;
void setFrames(const QList<Frame> &frames);
//memcheck, ptrcheck, helgrind:
QString file() const;