| 59 | } |
| 60 | |
| 61 | OnCloseAction ProjectFileIOExtensionRegistry::OnClose(AudacityProject& project) |
| 62 | { |
| 63 | for (auto& extension : GetExtensions()) |
| 64 | { |
| 65 | if (extension->OnClose(project) == OnCloseAction::Veto) |
| 66 | return OnCloseAction::Veto; |
| 67 | } |
| 68 | |
| 69 | return OnCloseAction::Continue; |
| 70 | } |
| 71 | |
| 72 | void ProjectFileIOExtensionRegistry::OnUpdateSaved( |
| 73 | AudacityProject& project, const ProjectSerializer& serializer) |
nothing calls this directly
no test coverage detected