Fixes: - Show extension of projects to add files to

Details:  - Helps distinguishing adding to pro or pri file with same
name
This commit is contained in:
con
2009-02-23 14:30:19 +01:00
parent 350a7167c2
commit aa89dfa4b7

View File

@@ -152,7 +152,7 @@ QList<QWizardPage *> ProjectFileWizardExtension::extensionPages(const Core::IWiz
const int count = m_context->projects.size();
for (int i = 0; i < count; i++) {
ProjectNode *pn = m_context->projects.at(i);
projectNames.push_back(pn->name());
projectNames.push_back(QFileInfo(pn->path()).fileName());
if (current == pn)
currentIndex = i;
}