1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-23 15:41:09 +02:00

remove unused variable

This commit is contained in:
Paul Licameli 2017-01-03 17:07:08 -05:00
parent c55d83898a
commit b019e28a53

View File

@ -770,7 +770,6 @@ int ExportMultiple::ExportMultipleByTrack(bool byName,
bool tagsPrompt = mProject->GetShowId3Dialog();
Track *tr, *tr2;
int l = 0; // track counter
int numTracks = 0;
int ok = eProgressSuccess;
wxArrayString otherNames;
std::vector<Track*> selected; /**< Array of pointers to the tracks which were
@ -796,10 +795,6 @@ int ExportMultiple::ExportMultipleByTrack(bool byName,
selected.push_back(tr);
tr->SetSelected(false);
}
if (!tr->GetLinked()) {
numTracks++;
}
}
/* Examine all tracks in turn, collecting export information */