Add message for import error when no loaders are found

This commit is contained in:
LoudSnorer 2023-02-23 18:36:26 -05:00
parent 33cf3f104f
commit 74960d6472

View File

@ -1154,14 +1154,21 @@ QList<ImportPath> MainWindow::selectCPAPDataCards(const QString & prompt, bool a
}
bool found=false;
for (int i = 0; i < w.selectedFiles().size(); i++) {
Q_FOREACH(MachineLoader * loader, loaders) {
if (loader->Detect(w.selectedFiles().at(i))) {
found=true;
datacards.append(ImportPath(w.selectedFiles().at(i), loader));
break;
}
}
}
if (!found) {
QMessageBox msgBox ( QMessageBox::Information , tr("OSCAR Information") , tr("No supported data was found") , QMessageBox::Ok ) ;
msgBox.setInformativeText(w.selectedFiles().at(0));
msgBox.exec();
}
}
return datacards;