From f30c7f37f00456497642f35647bbeadce751b125 Mon Sep 17 00:00:00 2001
From: Christian Kandeler <christian.kandeler@nokia.com>
Date: Thu, 13 Jan 2011 16:27:28 +0100
Subject: [PATCH] Maemo: Fix timer bug.

---
 src/plugins/qt4projectmanager/qt-maemo/maemodeployables.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemodeployables.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemodeployables.cpp
index c071277043e..f25b4b90cc2 100644
--- a/src/plugins/qt4projectmanager/qt-maemo/maemodeployables.cpp
+++ b/src/plugins/qt4projectmanager/qt-maemo/maemodeployables.cpp
@@ -60,6 +60,7 @@ MaemoDeployables::MaemoDeployables(const Qt4Target *target)
 {
     QTimer::singleShot(0, this, SLOT(init()));
     m_updateTimer->setInterval(1500);
+    m_updateTimer->setSingleShot(true);
     connect(m_updateTimer, SIGNAL(timeout()), this, SLOT(createModels()));
 }
 
-- 
GitLab