diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-12-21 09:35:37 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-12-21 09:35:37 (GMT) |
commit | e97471c4d6294794b01c96a3f0aead2a3e6ee45f (patch) | |
tree | aaaf6d7ebd7c8cdddcc4392551bf70f0040afe70 /src/opengl/qgl_p.h | |
parent | b5fc0b789039c425ca41dd8b466d4cbb355c886b (diff) | |
parent | e22d40a6143709da6ee26c2f8e1b6a05904fd9b4 (diff) | |
download | Qt-e97471c4d6294794b01c96a3f0aead2a3e6ee45f.zip Qt-e97471c4d6294794b01c96a3f0aead2a3e6ee45f.tar.gz Qt-e97471c4d6294794b01c96a3f0aead2a3e6ee45f.tar.bz2 |
Merge branch 'master' of git://scm.dev.nokia.troll.no/qt/qt-qa-team
* 'master' of git://scm.dev.nokia.troll.no/qt/qt-qa-team: (29 commits)
Add dita_docs target to generate DITA output.
Fix missing part from commit dae052cb11c0018121f2c4028aed9db17769fd77
Fix a bug where 'int' is not printed in snippets.
SSL: fix build with -openssl-linked for OpenSSL 0.9.8*
Fix m_longTapDetector causing crash.
Fixes to czech translation
Fix crash in positionInLigature
Fix to incorrect ApplicationActivate event in QtOpenGL
Symbian - Fix QFile::map with non page aligned offsets
Update czech translation
Symbian: fix tst_QMenuBar::task256322_highlight() regression
I18n: Updates galician translation (4.8)
Fix Memoy leak relateded to contextmenu.
Set execution bits for .test files.
Default to QDir::homePath() in Symbian native file dialogs
directfb: Backport the work from QtBase to Qt 4.8
[blitter] Work on tst_QPixmap::clear()
[blitter] Use QScopedPointer for the engine and blittable
[blitter] Generate a new serial number when resizing the
[blitter] Fix memory leak in the blitter paintengine
...
Diffstat (limited to 'src/opengl/qgl_p.h')
-rw-r--r-- | src/opengl/qgl_p.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/opengl/qgl_p.h b/src/opengl/qgl_p.h index df09dfd..89153d9 100644 --- a/src/opengl/qgl_p.h +++ b/src/opengl/qgl_p.h @@ -106,6 +106,10 @@ class QMacWindowChangeEvent; class QWSGLWindowSurface; #endif +#ifdef Q_OS_SYMBIAN +extern bool qt_initializing_gl_share_widget(); +#endif + #ifndef QT_NO_EGL class QEglContext; #endif @@ -183,6 +187,10 @@ public: #endif { isGLWidget = 1; +#if defined(Q_OS_SYMBIAN) + if (qt_initializing_gl_share_widget()) + isGLGlobalShareWidget = 1; +#endif } ~QGLWidgetPrivate() {} |