| 32 | } |
| 33 | |
| 34 | void KDevProjectOpen::cleanup() |
| 35 | { |
| 36 | const auto projects = ICore::self()->projectController()->projects(); |
| 37 | for (IProject* p : projects) { |
| 38 | ICore::self()->projectController()->closeProject(p); |
| 39 | } |
| 40 | Q_ASSERT(ICore::self()->projectController()->projects().isEmpty()); |
| 41 | } |
| 42 | |
| 43 | void KDevProjectOpen::openProject(const QUrl& path) |
| 44 | { |
nothing calls this directly
no test coverage detected