| 65 | } |
| 66 | |
| 67 | QDir SessionManager::sessionDirectory() const |
| 68 | { |
| 69 | QDir d(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation)); |
| 70 | |
| 71 | d.mkpath("session"); |
| 72 | d.cd("session"); |
| 73 | |
| 74 | return d; |
| 75 | } |
| 76 | |
| 77 | void SessionManager::saveIntoSessionDirectory(ScintillaNext *editor, const QString &sessionFileName) const |
| 78 | { |
nothing calls this directly
no outgoing calls
no test coverage detected