| 291 | } |
| 292 | |
| 293 | void QQPlotDock::saveConfigAsTemplate(KConfig& config) { |
| 294 | KConfigGroup group = config.group(QStringLiteral("QQPlot")); |
| 295 | |
| 296 | // distribution |
| 297 | group.writeEntry(QStringLiteral("kernelType"), static_cast<int>(m_plot->distribution())); |
| 298 | |
| 299 | // properties of the reference and percentile curves |
| 300 | lineWidget->saveConfig(group); |
| 301 | symbolWidget->saveConfig(group); |
| 302 | config.sync(); |
| 303 | } |
nothing calls this directly
no test coverage detected