summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/webgl/qwebglcontext.cpp
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-29 13:00:44 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-29 13:05:29 +0200
commit8bc9dff5ab448e183c93f25ddb30ce74f630fa96 (patch)
treed6603bba3ed53b3128e23b5176aa33ae57160b45 /src/plugins/platforms/webgl/qwebglcontext.cpp
parent2518ee6730ea7b44f2a969caff5d5842d01c11ae (diff)
Use QList instead of QVector
Task-number: QTBUG-84469 Change-Id: Ibe91f99df65861fd9a272afa11e812c7664af702 Reviewed-by: Jesus Fernandez <jsfdez@gmail.com>
Diffstat (limited to 'src/plugins/platforms/webgl/qwebglcontext.cpp')
-rw-r--r--src/plugins/platforms/webgl/qwebglcontext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/webgl/qwebglcontext.cpp b/src/plugins/platforms/webgl/qwebglcontext.cpp
index 5857883..e624595 100644
--- a/src/plugins/platforms/webgl/qwebglcontext.cpp
+++ b/src/plugins/platforms/webgl/qwebglcontext.cpp
@@ -325,7 +325,7 @@ struct GLFunction
static QHash<QString, const GLFunction *> byName;
static QStringList remoteFunctionNames;
- using ParameterList = QVector<Parameter>;
+ using ParameterList = QList<Parameter>;
GLFunction(const QString &remoteName,
const QString &localName,