| 77 | } |
| 78 | |
| 79 | bool ProjectFileIOExtensionRegistry::IsBlockLocked( |
| 80 | const AudacityProject& project, int64_t blockId) |
| 81 | { |
| 82 | for (auto& extension : GetExtensions()) |
| 83 | { |
| 84 | if (extension->IsBlockLocked(project, blockId)) |
| 85 | return true; |
| 86 | } |
| 87 | |
| 88 | return false; |
| 89 | } |
nothing calls this directly
no test coverage detected