QMake: Constify some accessors

Task-number: QTCREATORBUG-28355
Change-Id: I25d168934da7bbc1aa6e22ac7c6bdbbfe3c3ed61
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2022-11-29 11:12:12 +01:00
parent 8fdbbccf3f
commit 3d158d73ca
2 changed files with 6 additions and 6 deletions

View File

@@ -895,17 +895,17 @@ QtSupport::ProFileReader *QmakeBuildSystem::createProFileReader(const QmakeProFi
return reader;
}
QMakeGlobals *QmakeBuildSystem::qmakeGlobals()
QMakeGlobals *QmakeBuildSystem::qmakeGlobals() const
{
return m_qmakeGlobals.get();
}
QMakeVfs *QmakeBuildSystem::qmakeVfs()
QMakeVfs *QmakeBuildSystem::qmakeVfs() const
{
return m_qmakeVfs;
}
const FilePath &QmakeBuildSystem::qmakeSysroot()
const FilePath &QmakeBuildSystem::qmakeSysroot() const
{
return m_qmakeSysroot;
}