1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Remove class ImportXMLTagHandler...

... It became unused at d39590cf41

And remove some other complications in ProjectFileManager that were used only
in it
This commit is contained in:
Paul Licameli
2020-09-01 08:51:24 -04:00
parent 0785a82e2b
commit 77d0851a65
3 changed files with 6 additions and 86 deletions

View File

@@ -48,7 +48,8 @@ void ImportCommand::PopulateOrExchange(ShuttleGui & S)
}
bool ImportCommand::Apply(const CommandContext & context){
return ProjectFileManager::Get( context.project ).Import(mFileName, nullptr, false);
return ProjectFileManager::Get( context.project )
.Import(mFileName, false);
}