summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-08-25 16:40:08 +0200
committerThierry Bastian <thierry.bastian@nokia.com>2009-08-25 16:41:07 +0200
commit1adc5dbd8f9561b3fbf38759ba5abdca9f3a490b (patch)
tree5fdabd49a59e9a12cae291d7422ce222dbf8dfed /src
parent22e2ba1e5e3345b99f41b62b9984ca6871579122 (diff)
QWidgetanimator: the animations are children of the widget they animate
This will remove a false pmemleak under valgrind. Reviewed-by: ogoffart
Diffstat (limited to 'src')
-rw-r--r--src/gui/widgets/qwidgetanimator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/qwidgetanimator.cpp b/src/gui/widgets/qwidgetanimator.cpp
index beb6be237..972e07bac 100644
--- a/src/gui/widgets/qwidgetanimator.cpp
+++ b/src/gui/widgets/qwidgetanimator.cpp
@@ -93,7 +93,7 @@ void QWidgetAnimator::animate(QWidget *widget, const QRect &_final_geometry, boo
if (it != m_animation_map.constEnd() && (*it)->endValue().toRect() == final_geometry)
return;
- QPropertyAnimation *anim = new QPropertyAnimation(widget, "geometry");
+ QPropertyAnimation *anim = new QPropertyAnimation(widget, "geometry", widget);
anim->setDuration(animate ? 200 : 0);
anim->setEasingCurve(QEasingCurve::InOutQuad);
anim->setEndValue(final_geometry);