| 171 | } |
| 172 | |
| 173 | ProcessSelectionDialog::~ProcessSelectionDialog() |
| 174 | { |
| 175 | KConfigGroup config = KSharedConfig::openConfig()->group(QStringLiteral("ProcessSelectionDialog")); |
| 176 | config.writeEntry("filterText", m_ui.filterEdit->text()); |
| 177 | config.writeEntry("dialogGeometry", saveGeometry()); |
| 178 | config.writeEntry("processOwner", static_cast<int>(m_sortModel->filterProcessOwner())); |
| 179 | config.writeEntry("headerState", m_ui.view->header()->saveState()); |
| 180 | config.writeEntry("treeView", m_ui.buttonTree->isChecked()); |
| 181 | } |
| 182 | |
| 183 | long long ProcessSelectionDialog::pidSelected() const |
| 184 | { |
nothing calls this directly
no test coverage detected