| 94 | } |
| 95 | |
| 96 | void JavaCommon::javaBinaryWasBad(QWidget *parent, JavaCheckResult result) |
| 97 | { |
| 98 | QString text; |
| 99 | text += QObject::tr( |
| 100 | "The specified Java binary didn't work.<br />You should use the auto-detect feature, " |
| 101 | "or set the path to the Java executable.<br />"); |
| 102 | CustomMessageBox::selectable(parent, QObject::tr("Java test failure"), text, QMessageBox::Warning)->show(); |
| 103 | } |
| 104 | |
| 105 | void JavaCommon::javaCheckNotFound(QWidget *parent) |
| 106 | { |
nothing calls this directly
no test coverage detected