forked from qt-creator/qt-creator
More Utils::toSet/toList
... and unrelated cosmetic changes. Change-Id: I591b17fd5289831e701b683f8fb47816efd1fa67 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -64,7 +64,7 @@ DeployableFile DeploymentData::deployableForLocalFile(const QString &localFilePa
|
||||
|
||||
bool DeploymentData::operator==(const DeploymentData &other) const
|
||||
{
|
||||
return m_files.toSet() == other.m_files.toSet()
|
||||
return Utils::toSet(m_files) == Utils::toSet(other.m_files)
|
||||
&& m_localInstallRoot == other.m_localInstallRoot;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user