| 457 | } |
| 458 | |
| 459 | void LollipopPlotDock::saveConfigAsTemplate(KConfig& config) { |
| 460 | KConfigGroup group = config.group(QStringLiteral("Lollipop")); |
| 461 | |
| 462 | // general |
| 463 | group.writeEntry(QStringLiteral("Orientation"), ui.cbOrientation->currentIndex()); |
| 464 | |
| 465 | lineWidget->saveConfig(group); |
| 466 | symbolWidget->saveConfig(group); |
| 467 | valueWidget->saveConfig(group); |
| 468 | |
| 469 | config.sync(); |
| 470 | } |
nothing calls this directly
no test coverage detected