| 332 | } |
| 333 | |
| 334 | void JavaWizardWidget::javaVersionSelected(BaseVersion::Ptr version) |
| 335 | { |
| 336 | auto java = std::dynamic_pointer_cast<JavaInstall>(version); |
| 337 | if (!java) { |
| 338 | return; |
| 339 | } |
| 340 | auto visible = java->id.requiresPermGen(); |
| 341 | m_labelPermGen->setVisible(visible); |
| 342 | m_permGenSpinBox->setVisible(visible); |
| 343 | m_javaPathTextBox->setText(java->path); |
| 344 | checkJavaPath(java->path); |
| 345 | } |
| 346 | |
| 347 | void JavaWizardWidget::on_javaBrowseBtn_clicked() |
| 348 | { |
nothing calls this directly
no test coverage detected