| 991 | } |
| 992 | |
| 993 | void MainWindow::stateLoadInfo() { |
| 994 | QStringList slotNames = m_config->value(SETTING_SLOT_NAMES).toStringList(); |
| 995 | QStringList slotPaths = m_config->value(SETTING_SLOT_PATHS).toStringList(); |
| 996 | |
| 997 | for (int i = 0; i < slotNames.size(); i++) { |
| 998 | QString name = slotNames.at(i); |
| 999 | QString path = slotPaths.at(i); |
| 1000 | stateAdd(name, path); |
| 1001 | } |
| 1002 | } |
| 1003 | |
| 1004 | void MainWindow::setRecentSave(bool state) { |
| 1005 | ui->checkSaveRecent->setChecked(state); |
nothing calls this directly
no outgoing calls
no test coverage detected