forked from qt-creator/qt-creator
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:
@@ -3,9 +3,9 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QList>
|
||||
#include <QMetaType>
|
||||
#include <QSharedDataPointer>
|
||||
#include <QVector>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QString;
|
||||
@@ -89,8 +89,8 @@ public:
|
||||
int kind() const;
|
||||
void setKind(int kind);
|
||||
|
||||
QVector<Stack> stacks() const;
|
||||
void setStacks(const QVector<Stack> &stacks);
|
||||
QList<Stack> stacks() const;
|
||||
void setStacks(const QList<Stack> &stacks);
|
||||
|
||||
Suppression suppression() const;
|
||||
void setSuppression(const Suppression &suppression);
|
||||
|
||||
Reference in New Issue
Block a user