Qt versions are different if the dislayname does not match

* Fixes update of Qt version name whne renaming a Qt version.
This commit is contained in:
Tobias Hunger
2010-02-22 18:21:17 +01:00
parent 7b41c53bb3
commit ea007592bc

View File

@@ -414,6 +414,8 @@ bool QtVersionManager::equals(QtVersion *a, QtVersion *b)
|| a->m_msvcVersion != b->m_msvcVersion
|| a->m_mwcDirectory != b->m_mwcDirectory)
return false;
if (a->m_displayName != b->displayName())
return false;
return true;
}