From 359e526c1fc8600253bca166d6ed5e579e598b7c Mon Sep 17 00:00:00 2001 From: Robin Burchell <robin.burchell@jollamobile.com> Date: Fri, 28 Mar 2014 18:13:20 +0100 Subject: [PATCH] QQuickWindow: Don't store animation driver pointer unnecessarily. We don't do anything with it outside the constructor. Change-Id: Id31e9672f9901180e34bae86c8523bfc70d4922c Reviewed-by: Gunnar Sletta <gunnar.sletta@jollamobile.com> --- src/quick/items/qquickwindow.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/quick/items/qquickwindow.cpp b/src/quick/items/qquickwindow.cpp index a494f5ea5d..83b4b16e8e 100644 --- a/src/quick/items/qquickwindow.cpp +++ b/src/quick/items/qquickwindow.cpp @@ -105,9 +105,9 @@ public: // Allow incubation for 1/3 of a frame. m_incubation_time = qMax(1, int(1000 / QGuiApplication::primaryScreen()->refreshRate()) / 3); - m_animation_driver = m_renderLoop->animationDriver(); - if (m_animation_driver) { - connect(m_animation_driver, SIGNAL(stopped()), this, SLOT(animationStopped())); + QAnimationDriver *animationDriver = m_renderLoop->animationDriver(); + if (animationDriver) { + connect(animationDriver, SIGNAL(stopped()), this, SLOT(animationStopped())); connect(m_renderLoop, SIGNAL(timeToIncubate()), this, SLOT(incubate())); } } @@ -153,7 +153,6 @@ protected: private: QSGRenderLoop *m_renderLoop; int m_incubation_time; - QAnimationDriver *m_animation_driver; int m_timer; }; -- GitLab