QmlProfiler: Don't let timer run if we cannot connect to port

Previously the timer was started as soon as we connect, but we
should actually make sure the service is there.

Change-Id: Ic59ccb4a402a54dc1fc1f0c92ca2f80dad436581
Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
This commit is contained in:
Kai Koehne
2011-11-10 17:08:07 +01:00
committed by Christiaan Janssen
parent 3ba511c6ad
commit e249265a96
3 changed files with 8 additions and 1 deletions

View File

@@ -297,7 +297,7 @@ Rectangle {
id: elapsedTimer
property date startDate
property bool reset: true
running: connection.recording
running: connection.recording && connection.enabled
repeat: true
onRunningChanged: {
if (running) reset = true;