1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 08:29:27 +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

View File

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