| 444 | } |
| 445 | |
| 446 | void TaskEditWidget::configurationSelectionChanged() { |
| 447 | if (! editTask) |
| 448 | return; |
| 449 | |
| 450 | if (! ui->configurationSelect->isEnabled()) |
| 451 | return; |
| 452 | |
| 453 | editTask->setCompilerConfiguration(ui->compilersList->currentItem()->text(), |
| 454 | ui->configurationSelect->currentText()); |
| 455 | } |
| 456 | |
| 457 | void TaskEditWidget::answerFileExtensionChanged(const QString &extension) { |
| 458 | if (! editTask) |
nothing calls this directly
no test coverage detected