summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2014-12-17 08:54:11 +0100
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2014-12-18 06:32:39 +0100
commitc07559bf5b352932dc4972a61c2c5f9b4ddc3c99 (patch)
tree8223cfb83d6989349a9ed0b6f98b0d1b08b1e58d
parentdd91e1bc4df77dfda2efd717bb5cd2a8a7b79908 (diff)
QOpenGLContext: Use static invocation of QGuiApplication::platformNativeInterface().
Fix MSVC warning (release build): qopenglcontext.cpp(1116) : warning C4189: 'app' : local variable is initialized but not referenced Change-Id: I00fa5237bbac4c0e3bb63ea9d3e5096e05dbe1be Reviewed-by: Laszlo Agocs <laszlo.agocs@theqtcompany.com>
-rw-r--r--src/gui/kernel/qopenglcontext.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/kernel/qopenglcontext.cpp b/src/gui/kernel/qopenglcontext.cpp
index 1a8a534e11..c01e1c95dd 100644
--- a/src/gui/kernel/qopenglcontext.cpp
+++ b/src/gui/kernel/qopenglcontext.cpp
@@ -1113,9 +1113,9 @@ void QOpenGLContext::deleteQGLContext()
void *QOpenGLContext::openGLModuleHandle()
{
#ifdef QT_OPENGL_DYNAMIC
- QGuiApplication *app = qGuiApp;
- Q_ASSERT(app);
- return app->platformNativeInterface()->nativeResourceForIntegration(QByteArrayLiteral("glhandle"));
+ QPlatformNativeInterface *ni = QGuiApplication::platformNativeInterface();
+ Q_ASSERT(ni);
+ return ni->nativeResourceForIntegration(QByteArrayLiteral("glhandle"));
#else
return 0;
#endif