forked from qt-creator/qt-creator
qmake: Update QmakePriFile::subPriFilesExact
Change-Id: Ie1db4eb200c2a5d56bbca678dbe007f91aadf04a Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
committed by
Tim Jenssen
parent
aa4c7dc07c
commit
9e63c71412
@@ -502,17 +502,9 @@ QList<RunConfiguration *> QmakePriFile::runConfigurations() const
|
||||
return QList<RunConfiguration *>();
|
||||
}
|
||||
|
||||
QList<QmakePriFile *> QmakePriFile::subPriFilesExact() const
|
||||
QVector<QmakePriFile *> QmakePriFile::subPriFilesExact() const
|
||||
{
|
||||
QList<QmakePriFile *> nodes;
|
||||
#if 0
|
||||
foreach (ProjectNode *node, projectNodes()) {
|
||||
QmakePriFile *n = dynamic_cast<QmakePriFile *>(node);
|
||||
if (n && n->includedInExactParse())
|
||||
nodes << n;
|
||||
}
|
||||
#endif
|
||||
return nodes;
|
||||
return Utils::filtered(m_children, &QmakePriFile::includedInExactParse);
|
||||
}
|
||||
|
||||
QmakeProFile *QmakePriFile::proFile() const
|
||||
|
||||
Reference in New Issue
Block a user