Skip to content
Snippets Groups Projects
Commit aa89dfa4 authored by con's avatar con
Browse files

Fixes: - Show extension of projects to add files to

Details:  - Helps distinguishing adding to pro or pri file with same
name
parent 350a7167
No related branches found
No related tags found
No related merge requests found
...@@ -152,7 +152,7 @@ QList<QWizardPage *> ProjectFileWizardExtension::extensionPages(const Core::IWiz ...@@ -152,7 +152,7 @@ QList<QWizardPage *> ProjectFileWizardExtension::extensionPages(const Core::IWiz
const int count = m_context->projects.size(); const int count = m_context->projects.size();
for (int i = 0; i < count; i++) { for (int i = 0; i < count; i++) {
ProjectNode *pn = m_context->projects.at(i); ProjectNode *pn = m_context->projects.at(i);
projectNames.push_back(pn->name()); projectNames.push_back(QFileInfo(pn->path()).fileName());
if (current == pn) if (current == pn)
currentIndex = i; currentIndex = i;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment