| 217 | } |
| 218 | |
| 219 | void CompilerSettings::compilerNameChanged(const QString &text) { |
| 220 | if (curCompiler) { |
| 221 | curCompiler->setCompilerName(text); |
| 222 | ui->compilerList->currentItem()->setText(text); |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | void CompilerSettings::sourceExtensionsChanged(const QString &text) { |
| 227 | if (curCompiler) |
nothing calls this directly
no test coverage detected