summaryrefslogtreecommitdiffstats
path: root/src/opengl/qgl_p.h
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@nokia.com>2010-06-24 07:32:19 (GMT)
committerJørgen Lind <jorgen.lind@nokia.com>2010-06-24 07:45:33 (GMT)
commit415c1ee359249e3eb44ff56e6078076d6024afeb (patch)
tree91181a663dff5064308e763a24fdb21b0a357775 /src/opengl/qgl_p.h
parent57522c3c389c133343c31770950648c3cf271406 (diff)
downloadQt-415c1ee359249e3eb44ff56e6078076d6024afeb.zip
Qt-415c1ee359249e3eb44ff56e6078076d6024afeb.tar.gz
Qt-415c1ee359249e3eb44ff56e6078076d6024afeb.tar.bz2
Say hello to Q_WS_QPA!
Rename Q_WS_LITE -> Q_WS_QPA
Diffstat (limited to 'src/opengl/qgl_p.h')
-rw-r--r--src/opengl/qgl_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/opengl/qgl_p.h b/src/opengl/qgl_p.h
index a1be68f..6c1e6aa 100644
--- a/src/opengl/qgl_p.h
+++ b/src/opengl/qgl_p.h
@@ -68,7 +68,7 @@
#include <QtGui/private/qegl_p.h>
#endif
-#if defined(Q_WS_LITE)
+#if defined(Q_WS_QPA)
#include <QtGui/QPlatformGLContext>
#endif
@@ -359,7 +359,7 @@ public:
EGLSurface eglSurfaceForDevice() const;
#endif
-#if defined(Q_WS_LITE)
+#if defined(Q_WS_QPA)
QPlatformGLContext *platformContext;
#elif defined(Q_WS_X11) || defined(Q_WS_MAC)
void* cx;
@@ -424,7 +424,7 @@ public:
static inline QGLExtensionFuncs& extensionFuncs(const QGLContext *ctx) { return ctx->d_ptr->group->extensionFuncs(); }
#endif
-#if defined(Q_WS_X11) || defined(Q_WS_MAC) || defined(Q_WS_QWS) || defined(Q_WS_LITE)
+#if defined(Q_WS_X11) || defined(Q_WS_MAC) || defined(Q_WS_QWS) || defined(Q_WS_QPA)
static QGLExtensionFuncs qt_extensionFuncs;
static inline QGLExtensionFuncs& extensionFuncs(const QGLContext *) { return qt_extensionFuncs; }
#endif