use QVector instead of QList for block cache

This commit is contained in:
itsmattkc
2021-01-09 10:41:13 +11:00
parent 441a459774
commit 3337be07e5
4 changed files with 7 additions and 7 deletions
@@ -550,7 +550,7 @@ QVector<MediaInput *> ProjectExplorer::GetMediaNodesUsingFootage(Footage *item)
// Footage can contain multiple streams, all of which need to be dealt with
foreach (Item* s, sequences) {
const QList<Node*>& nodes = static_cast<Sequence*>(s)->nodes();
const QVector<Node*>& nodes = static_cast<Sequence*>(s)->nodes();
foreach (Node* n, nodes) {
MediaInput* media_node = dynamic_cast<MediaInput*>(n);