| 111 | } |
| 112 | |
| 113 | void StatisticsSpreadsheetDock::selectAll() { |
| 114 | StatisticsSpreadsheet::Metrics metrics; |
| 115 | for (const auto& metric : m_mappingComboBoxMetric) |
| 116 | metrics.setFlag(metric, true); |
| 117 | |
| 118 | for (auto* spreadsheet : m_spreadsheets) |
| 119 | spreadsheet->setMetrics(metrics); |
| 120 | |
| 121 | load(); |
| 122 | } |
| 123 | |
| 124 | void StatisticsSpreadsheetDock::selectNone() { |
| 125 | StatisticsSpreadsheet::Metrics metrics; |
no test coverage detected