summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@trolltech.com>2009-06-04 07:30:17 (GMT)
committerJason McDonald <jason.mcdonald@nokia.com>2009-06-07 02:23:40 (GMT)
commit8748594ab58a6b255cc4eef4a1defac48204d047 (patch)
treeb3bc2a64d86b209a244a2917d3ff242e93143e75 /src
parent82baac6103dd4fff69892b561ccbe019b6ced097 (diff)
downloadQt-8748594ab58a6b255cc4eef4a1defac48204d047.zip
Qt-8748594ab58a6b255cc4eef4a1defac48204d047.tar.gz
Qt-8748594ab58a6b255cc4eef4a1defac48204d047.tar.bz2
BT: Fixes Crash when deleting a QProgressBar which has been styled with QMotifStyle
Same fix as in e9a7e43031d7c1ee712e43be682c4e2c183759c4 but with motif Reported by https://bugs.kde.org/show_bug.cgi?id=193911 Task-number: 255138 Reviewed-by: jbache (cherry picked from commit cbe3119db5380c41d44d4e936c7da4889c02f147)
Diffstat (limited to 'src')
-rw-r--r--src/gui/styles/qmotifstyle.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/styles/qmotifstyle.cpp b/src/gui/styles/qmotifstyle.cpp
index 30fb160..eabc595 100644
--- a/src/gui/styles/qmotifstyle.cpp
+++ b/src/gui/styles/qmotifstyle.cpp
@@ -298,8 +298,11 @@ void QMotifStyle::unpolish(QWidget* widget)
{
QCommonStyle::unpolish(widget);
#ifndef QT_NO_PROGRESSBAR
- if (qobject_cast<QProgressBar *>(widget))
+ if (qobject_cast<QProgressBar *>(widget)) {
+ Q_D(QMotifStyle);
widget->removeEventFilter(this);
+ d->bars.removeAll(static_cast<QProgressBar*>(widget));
+ }
#endif
}