File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/plugins/platforms/webgl Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ struct GLFunction
325
325
326
326
static QHash<QString, const GLFunction *> byName;
327
327
static QStringList remoteFunctionNames;
328
- using ParameterList = QVector <Parameter>;
328
+ using ParameterList = QList <Parameter>;
329
329
330
330
GLFunction (const QString &remoteName,
331
331
const QString &localName,
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class QWebGLIntegrationPrivate
64
64
65
65
struct ClientData
66
66
{
67
- QVector <QWebGLWindow *> platformWindows;
67
+ QList <QWebGLWindow *> platformWindows;
68
68
QWebSocket *socket;
69
69
QWebGLScreen *platformScreen = nullptr ;
70
70
};
@@ -88,11 +88,11 @@ class QWebGLIntegrationPrivate
88
88
QList<ClientData> list;
89
89
QMutex mutex;
90
90
} clients;
91
- mutable QVector <QWindow *> windows;
91
+ mutable QList <QWindow *> windows;
92
92
93
93
QMutex waitMutex;
94
94
QWaitCondition waitCondition;
95
- QVector <int > pendingResponses;
95
+ QList <int > pendingResponses;
96
96
QHash<int , QVariant> receivedResponses;
97
97
QTouchDevice *touchDevice = nullptr ;
98
98
You can’t perform that action at this time.
0 commit comments