diff options
Diffstat (limited to 'tests/auto/declarative/qmlconnection/data/test-connection.qml')
-rw-r--r-- | tests/auto/declarative/qmlconnection/data/test-connection.qml | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/auto/declarative/qmlconnection/data/test-connection.qml b/tests/auto/declarative/qmlconnection/data/test-connection.qml deleted file mode 100644 index 9534621..0000000 --- a/tests/auto/declarative/qmlconnection/data/test-connection.qml +++ /dev/null @@ -1,10 +0,0 @@ -import Qt 4.6 - -Item { - id: screen; width: 50 - - property bool tested: false - signal testMe - - Connection { sender: screen; signal: "widthChanged()"; script: screen.tested = true } -} |