MCPcopy Create free account
hub / github.com/audacity/audacity / OnClose

Method OnClose

libraries/lib-project-file-io/ProjectFileIOExtension.cpp:61–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61OnCloseAction 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
72void ProjectFileIOExtensionRegistry::OnUpdateSaved(
73 AudacityProject& project, const ProjectSerializer& serializer)

Callers

nothing calls this directly

Calls 1

GetExtensionsFunction · 0.85

Tested by

no test coverage detected