| 226 | } |
| 227 | |
| 228 | void SessionManager::showSessionManager() |
| 229 | { |
| 230 | if (!isDefaultVirgin()) |
| 231 | saveSession(); |
| 232 | SessionDialog dlg(Controller::instance()->mainWindow()); |
| 233 | dlg.setAutoLoadSession(d->isAutoLoad); |
| 234 | dlg.exec(); |
| 235 | d->setAutoLoadLastSession(dlg.autoLoadSession()); |
| 236 | } |
| 237 | |
| 238 | void SessionManager::setValue(const QString &key, const QVariant &value) |
| 239 | { |
no test coverage detected