| 229 | } |
| 230 | |
| 231 | void CompilerSettings::compilerListCurrentRowChanged() { |
| 232 | if (ui->compilerList->currentItem()) { |
| 233 | int index = ui->compilerList->currentRow(); |
| 234 | setCurrentCompiler(editSettings->getCompiler(index)); |
| 235 | } else { |
| 236 | setCurrentCompiler(nullptr); |
| 237 | } |
| 238 | |
| 239 | refreshItemState(); |
| 240 | } |
| 241 | |
| 242 | void CompilerSettings::advancedButtonClicked() { |
| 243 | auto *dialog = new AdvancedCompilerSettingsDialog(this); |
nothing calls this directly
no test coverage detected