aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/debugger/qdeclarativeprofilerservice/data/exit.qml
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2012-02-02 12:06:06 +0100
committerQt by Nokia <qt-info@nokia.com>2012-02-10 16:44:24 +0100
commitebb65bc084d44cfc96efb29abf0607616095f757 (patch)
tree6f4968161bf53ff4de45c812c2475dc85c164ed9 /tests/auto/declarative/debugger/qdeclarativeprofilerservice/data/exit.qml
parent9daf11cede6a13fb95f202b2bdee7966a502d3f7 (diff)
Debugger: Rename QDeclarativeDebugTrace to QDeclarativeProfilerService
This avoids naming confusion with QDeclarativeTrace + makes it in line with QV8ProfilerService. Change-Id: Ifd801655044cff3ffdb2a9695ffc9868eeb51663 Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
Diffstat (limited to 'tests/auto/declarative/debugger/qdeclarativeprofilerservice/data/exit.qml')
-rw-r--r--tests/auto/declarative/debugger/qdeclarativeprofilerservice/data/exit.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/declarative/debugger/qdeclarativeprofilerservice/data/exit.qml b/tests/auto/declarative/debugger/qdeclarativeprofilerservice/data/exit.qml
new file mode 100644
index 0000000000..b250524caa
--- /dev/null
+++ b/tests/auto/declarative/debugger/qdeclarativeprofilerservice/data/exit.qml
@@ -0,0 +1,9 @@
+import QtQuick 2.0
+
+Item {
+ Timer {
+ running: true
+ interval: 1
+ onTriggered: Qt.quit();
+ }
+}