forked from qt-creator/qt-creator
QMake: Constify some accessors
Task-number: QTCREATORBUG-28355 Change-Id: I25d168934da7bbc1aa6e22ac7c6bdbbfe3c3ed61 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user