mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-11 22:14:36 +01:00
static DirManager::Get()...
... not member functions of AudacityProject This puts DirManager.cpp and four others back into the big strongly connected component of link dependencies. They will break out again when Project.cpp becomes a low-level file.
This commit is contained in:
@@ -108,7 +108,7 @@ namespace MissingAliasFilesDialog {
|
||||
size_t numProjects = gAudacityProjects.size();
|
||||
for (size_t ii = 0; ii < numProjects; ++ii) {
|
||||
// search each project for the blockfile
|
||||
if (gAudacityProjects[ii]->GetDirManager()->ContainsBlockFile(b)) {
|
||||
if (DirManager::Get( *gAudacityProjects[ii] ).ContainsBlockFile(b)) {
|
||||
m_LastMissingBlockFileProject = gAudacityProjects[ii];
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user