|
@@ -107,7 +107,8 @@ void ImportIndexWidget::showIndex()
|
|
|
m_confirm->setEnabled(false);
|
|
|
for (IndexSystemInfo info : m_indexSysList) {
|
|
|
QListWidgetItem *item = new QListWidgetItem();
|
|
|
- item->setText(info.projName);
|
|
|
+ QString indexName = ProjectManager::nameOfIndexType((ProjectManager::IndexType)info.indexType);
|
|
|
+ item->setText(info.projName + "-" + indexName);
|
|
|
m_listWidget->addItem(item);
|
|
|
}
|
|
|
}
|