diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2011-06-06 16:02:22 (GMT) |
---|---|---|
committer | Aurindam Jana <aurindam.jana@nokia.com> | 2011-06-14 14:12:44 (GMT) |
commit | 85b6b4006609914733461e777b0e051b6946344f (patch) | |
tree | db66c906fc975326b4ab394bac1e75703b549806 /tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml | |
parent | af1350249ea9de68e1c4b72ed1179948aa28ca19 (diff) | |
download | Qt-85b6b4006609914733461e777b0e051b6946344f.zip Qt-85b6b4006609914733461e777b0e051b6946344f.tar.gz Qt-85b6b4006609914733461e777b0e051b6946344f.tar.bz2 |
Rename qdeclarativescriptdebugging autotest directory
Align it with the other qdeclarativedebug* tests.
Change-Id: Idde1c0948daa10bf4cc893bcd08c99b5c743553a
Diffstat (limited to 'tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml b/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml deleted file mode 100644 index 9096c32..0000000 --- a/tests/auto/declarative/qdeclarativescriptdebugging/data/backtrace1.qml +++ /dev/null @@ -1,27 +0,0 @@ -import QtQuick 1.0 -import Qt.test 1.0 -import "backtrace1.js" as Script - -Rectangle { - id: mainRectangle - - property string foo: "Default"; - width: 200 - height: 200 - - - MyTestObject { - - function append(a, b) { - return a + " " + b; - } - - - id: testObject; - someProperty: append("Hello", mainRectangle.foo) - - onSignaled: { - Script.functionInScript(value , "b"); - } - } -} |