1
0
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:
Paul Licameli
2016-02-16 09:35:03 -05:00
parent b0295c34df
commit 55d85f1b25
6 changed files with 7 additions and 7 deletions

View File

@@ -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();
}
}