summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim Motoyoshi Kalland <kim.kalland@nokia.com>2009-09-28 10:09:02 (GMT)
committerKim Motoyoshi Kalland <kim.kalland@nokia.com>2009-09-28 11:11:58 (GMT)
commit9021dd294b4d998192ed9b06ce86be6ed8ffddf2 (patch)
tree7f32bc8f33e83642f4193fac3ef906962dfd2384 /src
parent76494c76c482edfe89639491317d008ea3e2a9d0 (diff)
downloadQt-9021dd294b4d998192ed9b06ce86be6ed8ffddf2.zip
Qt-9021dd294b4d998192ed9b06ce86be6ed8ffddf2.tar.gz
Qt-9021dd294b4d998192ed9b06ce86be6ed8ffddf2.tar.bz2
Fixed unwanted recursion when calling openGLVersionFlags().
Reviewed-by: Gunnar
Diffstat (limited to 'src')
-rw-r--r--src/gui/kernel/qwidget.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp
index 53ef682..2397793 100644
--- a/src/gui/kernel/qwidget.cpp
+++ b/src/gui/kernel/qwidget.cpp
@@ -10145,7 +10145,8 @@ void QWidget::setAttribute(Qt::WidgetAttribute attribute, bool on)
"QWidgetPrivate::high_attributes[] too small to contain all attributes in WidgetAttribute");
#ifdef Q_WS_WIN
- if (attribute == Qt::WA_PaintOnScreen && on) {
+ // ### Don't use PaintOnScreen+paintEngine() to do native painting in 5.0
+ if (attribute == Qt::WA_PaintOnScreen && on && !inherits("QGLWidget")) {
// see qwidget_win.cpp, ::paintEngine for details
paintEngine();
if (d->noPaintOnScreen)