| 536 | } |
| 537 | |
| 538 | bool ProjectActionsController::isProjectOpened(const muse::io::path_t& projectPath) const |
| 539 | { |
| 540 | auto project = globalContext()->currentProject(); |
| 541 | if (!project) { |
| 542 | return false; |
| 543 | } |
| 544 | |
| 545 | LOGD() << "project->path: " << project->path() << ", check path: " << projectPath; |
| 546 | if (project->path() == projectPath) { |
| 547 | return true; |
| 548 | } |
| 549 | |
| 550 | return false; |
| 551 | } |
| 552 | |
| 553 | RecentFile ProjectActionsController::makeRecentFile(IAudacityProjectPtr project) |
| 554 | { |
nothing calls this directly
no test coverage detected