1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-03 14:13:11 +02:00

Rename for clarity. It's a bool, not a resultCode.

This commit is contained in:
v.audacity 2010-07-16 05:37:26 +00:00
parent 16716a6ef8
commit 6f6aae0346

@ -2959,8 +2959,8 @@ bool AudacityProject::Save(bool overwrite /* = true */ ,
// self-contained during this dialog, it modifies the project!
if (mImportedDependencies)
{
bool resultCode = ShowDependencyDialogIfNeeded(this, true);
if (!resultCode)
bool bSuccess = ShowDependencyDialogIfNeeded(this, true);
if (!bSuccess)
return false;
mImportedDependencies = false; // do not show again
}