| 165 | } |
| 166 | |
| 167 | void StatisticsSpreadsheetDock::loadConfigFromTemplate(KConfig& config) { |
| 168 | KConfigGroup group = config.group(QLatin1String("StatisticsSpreadsheet")); |
| 169 | |
| 170 | auto metrics = static_cast<StatisticsSpreadsheet::Metrics>(group.readEntry(QStringLiteral("Metrics"), static_cast<int>(m_spreadsheet->metrics()))); |
| 171 | m_spreadsheet->setMetrics(metrics); |
| 172 | load(); |
| 173 | } |
| 174 | |
| 175 | /*! |
| 176 | saves spreadsheet properties to \c config. |
nothing calls this directly
no test coverage detected