diff options
author | Harald Fernengel <harald.fernengel@nokia.com> | 2009-12-04 13:14:41 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2009-12-04 13:16:56 (GMT) |
commit | 2447284a73dd8ce6268614d5709c5a1dcffbde3a (patch) | |
tree | e3f572f0e8b57664bc3cbceefc06314d682f40e0 /src | |
parent | 4190f781a81da9d2a2470d75fcf2cf2946504b34 (diff) | |
download | Qt-2447284a73dd8ce6268614d5709c5a1dcffbde3a.zip Qt-2447284a73dd8ce6268614d5709c5a1dcffbde3a.tar.gz Qt-2447284a73dd8ce6268614d5709c5a1dcffbde3a.tar.bz2 |
compile with Q_WS_LITE
Diffstat (limited to 'src')
-rw-r--r-- | src/opengl/qgl_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opengl/qgl_p.h b/src/opengl/qgl_p.h index 8e472e5..2160f4f 100644 --- a/src/opengl/qgl_p.h +++ b/src/opengl/qgl_p.h @@ -336,7 +336,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) +#if defined(Q_WS_X11) || defined(Q_WS_MAC) || defined(Q_WS_QWS) || defined(Q_WS_LITE) static QGLExtensionFuncs qt_extensionFuncs; static inline QGLExtensionFuncs& extensionFuncs(const QGLContext *) { return qt_extensionFuncs; } #endif |