1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 09:01:12 +01:00

fix bugs in previous

This commit is contained in:
Paul Licameli
2016-04-17 12:45:34 -04:00
parent a64480770a
commit 3e6f0bed78
2 changed files with 5 additions and 3 deletions

View File

@@ -405,7 +405,7 @@ void DependencyDialog::PopulateList()
mHasMissingFiles = false;
mHasNonMissingFiles = false;
unsigned int i;
long i = 0;
for (const auto &aliasedFile : mAliasedFiles) {
const wxFileName &fileName = aliasedFile.mFileName;
wxLongLong byteCount = (aliasedFile.mByteCount * 124) / 100;
@@ -426,6 +426,8 @@ void DependencyDialog::PopulateList()
}
mFileListCtrl->SetItem(i, 1, Internat::FormatSize(byteCount));
mFileListCtrl->SetItemData(i, long(bOriginalExists));
++i;
}
wxString msg = kStdMsg;