aboutsummaryrefslogtreecommitdiff
path: root/plainqt
diff options
context:
space:
mode:
authorTorsten Rahn <Torsten.Rahn@basyskom.de>2010-06-07 12:09:19 +0200
committerTorsten Rahn <Torsten.Rahn@basyskom.de>2010-06-07 12:09:19 +0200
commit72e52c691b7c4c962d8ce8d78b76d09dd997ce40 (patch)
tree8e8c2ab27100871789e4c25eb19dc40a5a0e475b /plainqt
parent226503fe17714878cf31f8dcf1c8c2da2d5d74cc (diff)
Fixes: Prevent infinite recursion due to repaint call
RevBy: Bernd Lamecker
Diffstat (limited to 'plainqt')
-rw-r--r--plainqt/style/qtmaemo6scrollbareventfilter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plainqt/style/qtmaemo6scrollbareventfilter.cpp b/plainqt/style/qtmaemo6scrollbareventfilter.cpp
index 46b21a0a..10e53356 100644
--- a/plainqt/style/qtmaemo6scrollbareventfilter.cpp
+++ b/plainqt/style/qtmaemo6scrollbareventfilter.cpp
@@ -383,8 +383,8 @@ void QtMaemo6ScrollBarEventFilter::fadeInOutAnimation(QWidget *w, const char *pr
connect(animationGroup->animationAt(FadeOut), SIGNAL(finished()), w, SLOT(hide()));
connect(animationGroup->animationAt(FadeOut), SIGNAL(finished()), this, SLOT(cleanUpTimerMap()));
- connect(fadeIn, SIGNAL(valueChanged(QVariant)), w, SLOT(repaint()));
- connect(fadeOut, SIGNAL(valueChanged(QVariant)), w, SLOT(repaint()));
+ connect(fadeIn, SIGNAL(valueChanged(QVariant)), w, SLOT(update()));
+ connect(fadeOut, SIGNAL(valueChanged(QVariant)), w, SLOT(update()));
w->show();
m_pendingAnimations.insert(w, animationGroup);