| 83 | } |
| 84 | |
| 85 | void SessionManagerPrivate::restoreValues(const QString &session) |
| 86 | { |
| 87 | Settings settings("", q->sessionFile(session)); |
| 88 | const auto keys = settings.keyList(kSessionGroup); |
| 89 | for (const auto &key : keys) { |
| 90 | values.insert(key, settings.value(kSessionGroup, key)); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | void SessionManagerPrivate::setAutoLoadLastSession(bool autoLoad) |
| 95 | { |
no test coverage detected