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