| 94 | } |
| 95 | |
| 96 | PlotTemplateDialog::~PlotTemplateDialog() { |
| 97 | // save current settings |
| 98 | KConfigGroup conf = Settings::group(QLatin1String("PlotTemplateDialog")); |
| 99 | KWindowConfig::saveWindowSize(windowHandle(), conf); |
| 100 | conf.writeEntry(QLatin1String("Location"), ui->cbLocation->currentIndex()); |
| 101 | |
| 102 | delete ui; |
| 103 | delete m_project; |
| 104 | } |
| 105 | |
| 106 | void PlotTemplateDialog::customTemplatePathChanged(const QString& path) { |
| 107 | KConfigGroup conf = Settings::group(QLatin1String("PlotTemplateDialog")); |
nothing calls this directly
no test coverage detected