QtVersionManager: Detect changes in sbs/system root settings

Otherwise the Qt options dialog won't emit a signal if just those paths
are changed in the settings.

Reviewed-By: hunger
This commit is contained in:
dt
2011-04-15 12:33:31 +02:00
parent 1418f9fc4d
commit e0c568f275

View File

@@ -527,6 +527,10 @@ bool QtVersionManager::equals(QtVersion *a, QtVersion *b)
return false;
if (a->m_displayName != b->displayName())
return false;
if (a->m_sbsV2Directory != b->m_sbsV2Directory)
return false;
if (a->m_systemRoot != b->m_systemRoot)
return false;
return true;
}