diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-02-26 07:08:30 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-02-26 07:08:30 (GMT) |
commit | 63b4ded7451913e944e2b7e016746650cfc13fe6 (patch) | |
tree | ab0ddc709da3ac3907347ebc227fa9d805c8091a /tests/auto/declarative/qdeclarativeconnection/data | |
parent | e1f33f2e4689a59de2814ffdea7ea246bbfe0283 (diff) | |
download | Qt-63b4ded7451913e944e2b7e016746650cfc13fe6.zip Qt-63b4ded7451913e944e2b7e016746650cfc13fe6.tar.gz Qt-63b4ded7451913e944e2b7e016746650cfc13fe6.tar.bz2 |
Rename files to follow class name.
Task-number: QT-2822
Diffstat (limited to 'tests/auto/declarative/qdeclarativeconnection/data')
4 files changed, 0 insertions, 26 deletions
diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection.qml deleted file mode 100644 index 81ab599..0000000 --- a/tests/auto/declarative/qdeclarativeconnection/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 - - Connections { target: screen; onWidthChanged: screen.tested = true } -} diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml deleted file mode 100644 index 22e9422..0000000 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection2.qml +++ /dev/null @@ -1,3 +0,0 @@ -import Qt 4.6 - -Connections { id: connection; target: connection; onTargetChanged: 1 == 1 } diff --git a/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml b/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml deleted file mode 100644 index 6e396c0..0000000 --- a/tests/auto/declarative/qdeclarativeconnection/data/test-connection3.qml +++ /dev/null @@ -1,3 +0,0 @@ -import Qt 4.6 - -Connections {} diff --git a/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml b/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml deleted file mode 100644 index 736d5e8..0000000 --- a/tests/auto/declarative/qdeclarativeconnection/data/trimming.qml +++ /dev/null @@ -1,10 +0,0 @@ -import Qt 4.6 - -Item { - id: screen; width: 50 - - property string tested - signal testMe(int param1, string param2) - - Connections { target: screen; onTestMe: screen.tested = param2 + param1 } -} |