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

Bug2513: Disk exhaustion error message should be as was pre-Unitary

This commit is contained in:
Paul Licameli
2020-08-26 16:56:03 -04:00
parent 0c4514efb0
commit 2389b191f6
3 changed files with 24 additions and 4 deletions

View File

@@ -506,7 +506,7 @@ size_t SqliteSampleBlock::GetBlob(void *dest,
// Just showing the user a simple message, not the library error too
// which isn't internationalized
throw SimpleMessageBoxException{ XO("Failed to retrieve project data") };
Conn()->ThrowException( false );
}
// Retrieve returned data
@@ -583,7 +583,7 @@ void SqliteSampleBlock::Load(SampleBlockID sbid)
// Just showing the user a simple message, not the library error too
// which isn't internationalized
throw SimpleMessageBoxException{ XO("Failed to retrieve sample block") };
Conn()->ThrowException( false );
}
// Retrieve returned data
@@ -641,7 +641,7 @@ void SqliteSampleBlock::Commit()
// Just showing the user a simple message, not the library error too
// which isn't internationalized
throw SimpleMessageBoxException{ XO("Failed to add sample block") };
Conn()->ThrowException( true );
}
// Retrieve returned data
@@ -690,7 +690,7 @@ void SqliteSampleBlock::Delete()
// Just showing the user a simple message, not the library error too
// which isn't internationalized
throw SimpleMessageBoxException{ XO("Failed to delete sample block") };
Conn()->ThrowException( true );
}
// Clear statement bindings and rewind statement