diff options
author | hjk <[email protected]> | 2025-04-09 12:33:14 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2025-04-09 11:48:49 +0000 |
commit | 50571ea02e7170d70ac104ee61646dd98a4b6ebf (patch) | |
tree | b93dfb46202334e2572c1119bf34b1460483eeab /src/plugins/qmakeprojectmanager/qmakeparsernodes.h | |
parent | c39ca31fe46e52097489b6114827a5d2a8a191e7 (diff) |
ProjectExplorer etc: Replace QVector with QList
Change-Id: I67a3dbad3b58ecca70923cc66499705a087cca8e
Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'src/plugins/qmakeprojectmanager/qmakeparsernodes.h')
-rw-r--r-- | src/plugins/qmakeprojectmanager/qmakeparsernodes.h | 12 |
1 files changed, 6 insertions, 6 deletions
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<QmakePriFile *> children() const; + const QList<QmakePriFile *> 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<QmakePriFile *> subPriFilesExact() const; + QList<QmakePriFile *> subPriFilesExact() const; // Set by parent bool includedInExactParse() const; @@ -214,7 +214,7 @@ private: QPointer<QmakeBuildSystem> m_buildSystem; QmakeProFile *m_qmakeProFile = nullptr; QmakePriFile *m_parent = nullptr; - QVector<QmakePriFile *> m_children; + QList<QmakePriFile *> m_children; Utils::TextFileFormat m_textFormat; @@ -255,10 +255,10 @@ public: class QMAKEPROJECTMANAGER_EXPORT InstallsItem { public: InstallsItem() = default; - InstallsItem(QString p, QVector<ProFileEvaluator::SourceFile> f, bool a, bool e) + InstallsItem(QString p, QList<ProFileEvaluator::SourceFile> f, bool a, bool e) : path(p), files(f), active(a), executable(e) {} QString path; - QVector<ProFileEvaluator::SourceFile> files; + QList<ProFileEvaluator::SourceFile> 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<InstallsItem> items; + QList<InstallsItem> items; }; // Implements ProjectNode for qmake .pro files |