summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-22 16:30:54 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-25 10:13:31 +0200
commit74dc89de3ed45ad217fdb003f663144e71ef01f8 (patch)
tree96e56d9e74848da40cb2e7868e0024fa8212ff89 /tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester
parentd1612610e650ffd7f2fbdef535c431647f57f0ac (diff)
Use QList instead of QVector in benchmarks tests
Task-number: QTBUG-84469 Change-Id: Id61d6036067da0bcd0811b1b97df5f1334007b7e Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester')
-rw-r--r--tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester/chip.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester/chip.h b/tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester/chip.h
index d991f771e2..754dd8dfa7 100644
--- a/tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester/chip.h
+++ b/tests/benchmarks/widgets/graphicsview/qgraphicsview/chiptester/chip.h
@@ -49,7 +49,7 @@ protected:
private:
int x, y;
QColor color;
- QVector<QPointF> stuff;
+ QList<QPointF> stuff;
};
#endif