| 478 | } |
| 479 | |
| 480 | static ReportType getMisraCReportType(const QStringList &standards) |
| 481 | { |
| 482 | if (standards.contains(CODING_STANDARD_MISRA_C_2023)) |
| 483 | return ReportType::misraC2023; |
| 484 | if (standards.contains(CODING_STANDARD_MISRA_C_2025)) |
| 485 | return ReportType::misraC2025; |
| 486 | return ReportType::misraC2012; |
| 487 | } |
| 488 | |
| 489 | void MainWindow::saveSettings() const |
| 490 | { |
no test coverage detected