| 83 | } |
| 84 | |
| 85 | SampleValuesDialog::~SampleValuesDialog() { |
| 86 | // save the current settings |
| 87 | KConfigGroup conf = Settings::group(QLatin1String("SampleValuesDialog")); |
| 88 | conf.writeEntry("Method", ui.cbMethod->currentIndex()); |
| 89 | conf.writeEntry("Value", ui.sbValue->value()); |
| 90 | KWindowConfig::saveWindowSize(windowHandle(), conf); |
| 91 | } |
| 92 | |
| 93 | void SampleValuesDialog::setColumns(const QVector<Column*>& columns) { |
| 94 | m_columns = columns; |
nothing calls this directly
no test coverage detected