summaryrefslogtreecommitdiffstats
path: root/src/webenginewidgets/api
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-05-06 14:29:04 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-05-11 14:07:37 +0200
commit1f3ad386b11f84b65f70350099ac629d3cea8c9c (patch)
treec457ba6256f9832a7d441efe43479e7274140f4d /src/webenginewidgets/api
parent58cd21c0aa7a9dc5a18ea411dcf462a2ee8193f6 (diff)
Switch away from QT_NO_OPENGL
Change-Id: I310265dacc9b1c8d391e82b6adf52b70c037d9b9 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/webenginewidgets/api')
-rw-r--r--src/webenginewidgets/api/qtwebenginewidgetsglobal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webenginewidgets/api/qtwebenginewidgetsglobal.cpp b/src/webenginewidgets/api/qtwebenginewidgetsglobal.cpp
index a39c0e483..5949f3d6e 100644
--- a/src/webenginewidgets/api/qtwebenginewidgetsglobal.cpp
+++ b/src/webenginewidgets/api/qtwebenginewidgetsglobal.cpp
@@ -49,13 +49,13 @@ namespace QtWebEngineCore
QT_BEGIN_NAMESPACE
-#ifndef QT_NO_OPENGL
+#if QT_CONFIG(opengl)
Q_GUI_EXPORT QOpenGLContext *qt_gl_global_share_context();
#endif
static void initialize()
{
-#ifndef QT_NO_OPENGL
+#if QT_CONFIG(opengl)
if (QCoreApplication::instance()) {
//On window/ANGLE, calling QtWebEngine::initialize from DllMain will result in a crash.
if (!qt_gl_global_share_context()) {
@@ -67,7 +67,7 @@ static void initialize()
}
//QCoreApplication is not yet instantiated, ensuring the call will be deferred
qAddPreRoutine(QtWebEngineCore::initialize);
-#endif // QT_NO_OPENGL
+#endif // QT_CONFIG(opengl)
}
Q_CONSTRUCTOR_FUNCTION(initialize)