diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-05 08:04:37 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2010-03-05 08:04:37 (GMT) |
commit | dcd17fa7b77cb6adfb8b21ea90c113915cab9bd5 (patch) | |
tree | 37dca0549529fe43b6e98af3adab133a9f5991d1 /tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml | |
parent | 4a6154ec912d5b84a556aa731c5b7de8f758ba3d (diff) | |
download | Qt-dcd17fa7b77cb6adfb8b21ea90c113915cab9bd5.zip Qt-dcd17fa7b77cb6adfb8b21ea90c113915cab9bd5.tar.gz Qt-dcd17fa7b77cb6adfb8b21ea90c113915cab9bd5.tar.bz2 |
Add support for QtScript connect/disconnect syntax in QML
This support was accidentally removed as a consequence of
4a665ff5da05860f5eb46e3982ef3d8163a6cf59.
QTBUG-8001
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml new file mode 100644 index 0000000..0d8e6ef --- /dev/null +++ b/tests/auto/declarative/qdeclarativeecmascript/data/scriptConnect.3.qml @@ -0,0 +1,15 @@ +import Qt.test 1.0 +import Qt 4.6 + +MyQmlObject { + property bool test: false + + id: root + + function testFunction() { + test = true; + } + + Component.onCompleted: root.argumentSignal.connect(testFunction); +} + |