diff options
author | Robert Griebl <rgriebl@trolltech.com> | 2010-03-23 10:28:56 (GMT) |
---|---|---|
committer | Robert Griebl <rgriebl@trolltech.com> | 2010-03-23 10:28:56 (GMT) |
commit | fc67ae441fb4bd73041fb7efc96e13310deff5dd (patch) | |
tree | 4608ac7396dadb9260b25199571c619bed29ccf0 /src/gui | |
parent | 8b2c3f7d5259fa6d5b24b090f662c03c16ea9ecb (diff) | |
download | Qt-fc67ae441fb4bd73041fb7efc96e13310deff5dd.zip Qt-fc67ae441fb4bd73041fb7efc96e13310deff5dd.tar.gz Qt-fc67ae441fb4bd73041fb7efc96e13310deff5dd.tar.bz2 |
Extended the high_attributes array, since we have more than 127 widget attributes now.
Reviewed-by: TrustMe
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/kernel/qwidget_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qwidget_p.h b/src/gui/kernel/qwidget_p.h index c32e1a1..ef7ac1f 100644 --- a/src/gui/kernel/qwidget_p.h +++ b/src/gui/kernel/qwidget_p.h @@ -680,7 +680,7 @@ public: QMap<Qt::GestureType, Qt::GestureFlags> gestureContext; // Bit fields. - uint high_attributes[3]; // the low ones are in QWidget::widget_attributes + uint high_attributes[4]; // the low ones are in QWidget::widget_attributes QPalette::ColorRole fg_role : 8; QPalette::ColorRole bg_role : 8; uint dirtyOpaqueChildren : 1; |