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,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;
|
||||
|
||||
Reference in New Issue
Block a user