summaryrefslogtreecommitdiffstats
path: root/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
diff options
context:
space:
mode:
authorJarek Kobus <[email protected]>2020-07-06 16:37:47 +0200
committerJarek Kobus <[email protected]>2020-07-07 11:48:45 +0200
commitd33655a9531b750e1574742ff575f871c19ed808 (patch)
tree8b90d1878dd5f0d9ea38bc048b22f718273bb802 /tests/manual/qopenglcontext/qopenglcontextwindow.cpp
parenta02d2d3f22acbf9afb349964f5da00d0e91af887 (diff)
Use QList instead of QVector in other qtbase tests
Task-number: QTBUG-84469 Change-Id: Ie0455c890c048c52eacad1badd6d21df999badf9 Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'tests/manual/qopenglcontext/qopenglcontextwindow.cpp')
-rw-r--r--tests/manual/qopenglcontext/qopenglcontextwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/manual/qopenglcontext/qopenglcontextwindow.cpp b/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
index 67898c0028e..4a369f8eda8 100644
--- a/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
+++ b/tests/manual/qopenglcontext/qopenglcontextwindow.cpp
@@ -112,7 +112,7 @@ void QOpenGLContextWindow::createForeignContext()
QSurfaceFormat fmt = format();
EGLConfig config = q_configFromGLFormat(dpy, fmt);
- QVector<EGLint> contextAttrs;
+ QList<EGLint> contextAttrs;
contextAttrs.append(EGL_CONTEXT_CLIENT_VERSION);
contextAttrs.append(fmt.majorVersion());
contextAttrs.append(EGL_NONE);