mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Add message for import error when no loaders are found
This commit is contained in:
parent
33cf3f104f
commit
74960d6472
@ -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++) {
|
for (int i = 0; i < w.selectedFiles().size(); i++) {
|
||||||
Q_FOREACH(MachineLoader * loader, loaders) {
|
Q_FOREACH(MachineLoader * loader, loaders) {
|
||||||
if (loader->Detect(w.selectedFiles().at(i))) {
|
if (loader->Detect(w.selectedFiles().at(i))) {
|
||||||
|
found=true;
|
||||||
datacards.append(ImportPath(w.selectedFiles().at(i), loader));
|
datacards.append(ImportPath(w.selectedFiles().at(i), loader));
|
||||||
break;
|
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;
|
return datacards;
|
||||||
|
Loading…
Reference in New Issue
Block a user