From 50571ea02e7170d70ac104ee61646dd98a4b6ebf Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 9 Apr 2025 12:33:14 +0200 Subject: ProjectExplorer etc: Replace QVector with QList Change-Id: I67a3dbad3b58ecca70923cc66499705a087cca8e Reviewed-by: Christian Kandeler --- src/plugins/qmakeprojectmanager/qmakeparsernodes.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/plugins/qmakeprojectmanager/qmakeparsernodes.h') diff --git a/src/plugins/qmakeprojectmanager/qmakeparsernodes.h b/src/plugins/qmakeprojectmanager/qmakeparsernodes.h index 5ab8751d3e5..e74468e33af 100644 --- a/src/plugins/qmakeprojectmanager/qmakeparsernodes.h +++ b/src/plugins/qmakeprojectmanager/qmakeparsernodes.h @@ -122,7 +122,7 @@ public: QmakePriFile *parent() const; QmakeProject *project() const; - const QVector children() const; + const QList children() const; QmakePriFile *findPriFile(const Utils::FilePath &fileName); const QmakePriFile *findPriFile(const Utils::FilePath &fileName) const; @@ -160,7 +160,7 @@ public: bool deploysFolder(const QString &folder) const; QmakeProFile *proFile() const; - QVector subPriFilesExact() const; + QList subPriFilesExact() const; // Set by parent bool includedInExactParse() const; @@ -214,7 +214,7 @@ private: QPointer m_buildSystem; QmakeProFile *m_qmakeProFile = nullptr; QmakePriFile *m_parent = nullptr; - QVector m_children; + QList m_children; Utils::TextFileFormat m_textFormat; @@ -255,10 +255,10 @@ public: class QMAKEPROJECTMANAGER_EXPORT InstallsItem { public: InstallsItem() = default; - InstallsItem(QString p, QVector f, bool a, bool e) + InstallsItem(QString p, QList f, bool a, bool e) : path(p), files(f), active(a), executable(e) {} QString path; - QVector files; + QList files; bool active = false; bool executable = false; }; @@ -267,7 +267,7 @@ class QMAKEPROJECTMANAGER_EXPORT InstallsList { public: void clear() { targetPath.clear(); items.clear(); } QString targetPath; - QVector items; + QList items; }; // Implements ProjectNode for qmake .pro files -- cgit v1.2.3