Different sections for auto-detected and manual Qt versions.

This commit is contained in:
con
2009-05-26 17:21:30 +02:00
parent c427858b7e
commit 2a101e53c0
4 changed files with 63 additions and 25 deletions

View File

@@ -285,13 +285,13 @@ void QtVersionManager::updateSystemVersion()
foreach (QtVersion *version, m_versions) {
if (version->isSystemVersion()) {
version->setPath(systemQtPath);
version->setName(tr("Auto-detected Qt"));
version->setName(tr("Qt in PATH"));
haveSystemVersion = true;
}
}
if (haveSystemVersion)
return;
QtVersion *version = new QtVersion(tr("Auto-detected Qt"),
QtVersion *version = new QtVersion(tr("Qt in PATH"),
systemQtPath,
getUniqueId(),
true);