| 64 | } |
| 65 | |
| 66 | bool ProjectPreview::Deserialize(const json& j) |
| 67 | { |
| 68 | if (!j.contains("Path")) |
| 69 | return false; |
| 70 | |
| 71 | Path = j["Path"]; |
| 72 | ReadProjectFile(); |
| 73 | return true; |
| 74 | } |
| 75 | |
| 76 | WelcomeWindow::WelcomeWindow(Nuake::EditorInterface* editor) : _Editor(editor) |
| 77 | { |
no test coverage detected