mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-15 09:01:12 +01:00
Remove more uses of at(); use a std::vector of bare pointers, not wx array
This commit is contained in:
@@ -75,7 +75,7 @@ static void GetAllSeqBlocks(AudacityProject *project,
|
||||
BlockArray &blocks = sequence->GetBlockArray();
|
||||
int i;
|
||||
for (i = 0; i < (int)blocks.size(); i++)
|
||||
outBlocks->push_back(&blocks.at(i));
|
||||
outBlocks->push_back(&blocks[i]);
|
||||
node = node->GetNext();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user