QmakeProjectManager: Use private for QmakeProject data

Change-Id: I79855579e0246ba910c1794f30e69ff8dbe18329
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2020-04-23 13:13:59 +02:00
parent f120d78f32
commit aef30c11b7

View File

@@ -173,13 +173,14 @@ public:
QmakeProFileNode *profile,
ProjectExplorer::FileNode *buildableFile);
public:
Utils::FilePath buildDir(const Utils::FilePath &proFilePath) const;
QmakeBuildConfiguration *qmakeBuildConfiguration() const;
void scheduleUpdateAllNowOrLater();
private:
void scheduleUpdateAll(QmakeProFile::AsyncUpdateDelay delay);
void scheduleUpdateAllLater() { scheduleUpdateAll(QmakeProFile::ParseLater); }
void scheduleUpdateAllNowOrLater();
Utils::FilePath buildDir(const Utils::FilePath &proFilePath) const;
QmakeBuildConfiguration *qmakeBuildConfiguration() const;
mutable QSet<const QPair<Utils::FilePath, Utils::FilePath>> m_toolChainWarnings;