forked from qt-creator/qt-creator
Remove more deprecation warnings
Change-Id: Ie50e41737a4bf7bea41f550df7cc765267e8a144 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -385,8 +385,8 @@ void QmakePriFile::watchFolders(const QSet<FilePath> &folders)
|
||||
QSet<QString> toWatch = folderStrings;
|
||||
toWatch.subtract(m_watchedFolders);
|
||||
|
||||
m_project->unwatchFolders(toUnwatch.toList(), this);
|
||||
m_project->watchFolders(toWatch.toList(), this);
|
||||
m_project->unwatchFolders(Utils::toList(toUnwatch), this);
|
||||
m_project->watchFolders(Utils::toList(toWatch), this);
|
||||
|
||||
m_watchedFolders = folderStrings;
|
||||
}
|
||||
@@ -1312,7 +1312,7 @@ QmakeEvalResult *QmakeProFile::evaluate(const QmakeEvalInput &input)
|
||||
result->includedFiles.children.insert(subDirName, subDir);
|
||||
}
|
||||
|
||||
result->exactSubdirs = subDirs.toSet();
|
||||
result->exactSubdirs = Utils::toSet(subDirs);
|
||||
}
|
||||
|
||||
// Convert ProFileReader::includeFiles to IncludedPriFile structure
|
||||
|
||||
Reference in New Issue
Block a user