| 436 | } |
| 437 | |
| 438 | void ProjectTreeView::aboutToShutdown() |
| 439 | { |
| 440 | // save all projects, not just the selected ones |
| 441 | const auto projects = ICore::self()->projectController()->projects(); |
| 442 | for ( const auto& project: projects ) { |
| 443 | saveState( project ); |
| 444 | } |
| 445 | } |
| 446 | |
| 447 | void ProjectTreeView::keyPressEvent(QKeyEvent* event) |
| 448 | { |
nothing calls this directly
no test coverage detected