1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Add error check comments.

These are places where we don't properly handle error returns.
This commit is contained in:
James Crook
2016-07-09 21:20:35 +01:00
parent c8d5905bd3
commit 763485b0dc
19 changed files with 50 additions and 18 deletions

View File

@@ -1831,6 +1831,7 @@ bool VSTEffect::CanExportPresets()
return true;
}
// Throws exceptions rather than reporting errors.
void VSTEffect::ExportPresets()
{
wxString path;
@@ -3653,6 +3654,7 @@ void VSTEffect::SaveFXProgram(wxMemoryBuffer & buf, int index)
return;
}
// Throws exceptions rather than giving error return.
void VSTEffect::SaveXML(const wxFileName & fn)
{
XMLFileWriter xmlFile;