| 635 | } |
| 636 | |
| 637 | void GuiApplication::closeProject(int index) noexcept { |
| 638 | mProjects->remove(index); |
| 639 | for (int i = index; i < mProjects->count(); ++i) { |
| 640 | mProjects->at(i)->setUiIndex(i); |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | bool GuiApplication::requestClosingAllProjects() noexcept { |
| 645 | for (std::size_t i = 0; i < mProjects->row_count(); ++i) { |
no test coverage detected