| 212 | } |
| 213 | |
| 214 | muse::io::paths_t AppShellConfiguration::sessionProjectsPaths() const |
| 215 | { |
| 216 | RetVal<ByteArray> retVal = readSessionState(); |
| 217 | if (!retVal.ret) { |
| 218 | LOGE() << retVal.ret.toString(); |
| 219 | return {}; |
| 220 | } |
| 221 | |
| 222 | return parseSessionProjectsPaths(retVal.val.toQByteArrayNoCopy()); |
| 223 | } |
| 224 | |
| 225 | muse::Ret AppShellConfiguration::setSessionProjectsPaths(const muse::io::paths_t& paths) |
| 226 | { |
no test coverage detected