aboutsummaryrefslogtreecommitdiff
path: root/plainqt
diff options
context:
space:
mode:
authorTorsten Rahn <Torsten.Rahn@basyskom.de>2010-06-07 13:57:09 +0200
committerTorsten Rahn <Torsten.Rahn@basyskom.de>2010-06-07 13:57:09 +0200
commit80a80e19a809a52e0ddcede882ff117cf325fb32 (patch)
tree0465cddec8dffb5c577c4a4975c6852ffcfda091 /plainqt
parent72e52c691b7c4c962d8ce8d78b76d09dd997ce40 (diff)
Fixes: Avoid crash due to calling QStatusBar->setSizeGripEnabled(bool)
RevBy: Bernd Lamecker
Diffstat (limited to 'plainqt')
-rw-r--r--plainqt/style/qtmaemo6style.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/plainqt/style/qtmaemo6style.cpp b/plainqt/style/qtmaemo6style.cpp
index fba2cdd4..6e7d18f5 100644
--- a/plainqt/style/qtmaemo6style.cpp
+++ b/plainqt/style/qtmaemo6style.cpp
@@ -1005,7 +1005,8 @@ void QtMaemo6Style::polish(QWidget *widget)
d->m_statusBar = statusBar;
}
//FIXME: Public API usage
- statusBar->setSizeGripEnabled(false);
+ //FIXME: Figure out why this triggers a crash with Qt 4.7
+// statusBar->setSizeGripEnabled(false);
}
if (QMenuBar *menuBar = qobject_cast<QMenuBar *>(widget)) {