| 122 | } |
| 123 | |
| 124 | void StatisticsSpreadsheetDock::selectNone() { |
| 125 | StatisticsSpreadsheet::Metrics metrics; |
| 126 | for (const auto& metric : m_mappingComboBoxMetric) |
| 127 | metrics.setFlag(metric, false); |
| 128 | |
| 129 | for (auto* spreadsheet : m_spreadsheets) |
| 130 | spreadsheet->setMetrics(metrics); |
| 131 | |
| 132 | load(); |
| 133 | } |
| 134 | |
| 135 | void StatisticsSpreadsheetDock::retranslateUi() { |
| 136 | } |
nothing calls this directly
no test coverage detected